AppServiceRequestReceivedEventArgs
AppServiceRequestReceivedEventArgs
AppServiceRequestReceivedEventArgs
AppServiceRequestReceivedEventArgs
Class
Definition
Provides data for the AppServiceConnection.RequestReceived event that occurs when a message arrives from the other endpoint of the app service connection. App services enable app-to-app communication by allowing you to provide services from your Universal Windows app to other Universal Windows app.
public : sealed class AppServiceRequestReceivedEventArgs : IAppServiceRequestReceivedEventArgspublic sealed class AppServiceRequestReceivedEventArgs : IAppServiceRequestReceivedEventArgsPublic NotInheritable Class AppServiceRequestReceivedEventArgs Implements IAppServiceRequestReceivedEventArgs// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
An instance of this class is passed to the event handler that you implement for the AppServiceConnection.RequestReceived event.
Properties
Request Request Request Request
Gets the request that was received from the app service.
public : AppServiceRequest Request { get; }public AppServiceRequest Request { get; }Public ReadOnly Property Request As AppServiceRequest// You can use this property in JavaScript.
The request that was received from the app service.
- See Also
Methods
GetDeferral() GetDeferral() GetDeferral() GetDeferral()
Informs the system that the event handler might continue to perform work after the event handler returns.
public : AppServiceDeferral GetDeferral()public AppServiceDeferral GetDeferral()Public Function GetDeferral() As AppServiceDeferral// You can use this method in JavaScript.
Returns