AppServiceResponse AppServiceResponse AppServiceResponse AppServiceResponse Class

Definition

Represents the message that the app service sent in response to a request. 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 AppServiceResponse : IAppServiceResponsepublic sealed class AppServiceResponse : IAppServiceResponsePublic NotInheritable Class AppServiceResponse Implements IAppServiceResponse// 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

In JavaScript, an instance of this class is passed to the event handler that you implement for the operation that the AppServiceConnection.SendMessageAsync method returns.

Properties

Message Message Message Message

Gets the message that the response from the app service contains.

public : ValueSet Message { get; }public ValueSet Message { get; }Public ReadOnly Property Message As ValueSet// You can use this property in JavaScript.
Value
ValueSet ValueSet ValueSet ValueSet

The message that the response from the app service contains.

Status Status Status Status

Gets the status for the response from the app service.

public : AppServiceResponseStatus Status { get; }public AppServiceResponseStatus Status { get; }Public ReadOnly Property Status As AppServiceResponseStatus// You can use this property in JavaScript.
See Also

See Also