StatelessAppServiceResponseStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates success or failure of a SendStatelessMessageAsync operation.
public enum class StatelessAppServiceResponseStatus
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 524288)]
enum class StatelessAppServiceResponseStatus
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 524288)]
public enum StatelessAppServiceResponseStatus
var value = Windows.ApplicationModel.AppService.StatelessAppServiceResponseStatus.success
Public Enum StatelessAppServiceResponseStatus
- Inheritance
-
StatelessAppServiceResponseStatus
- Attributes
Windows requirements
Device family |
Windows 10, version 1903 (introduced in 10.0.18362.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v8.0)
|
Fields
Name | Value | Description |
---|---|---|
Success | 0 | The operation completed succesfully. |
AppNotInstalled | 1 | The operation failed due to the app not being presented on the remote system. |
AppUnavailable | 2 | The operation failed due to the app failing to start. |
AppServiceUnavailable | 3 | The operation failed due to the app not supporting the requested app service. |
RemoteSystemUnavailable | 4 | The operation failed due to the remote system being unavailable. |
RemoteSystemNotSupportedByApp | 5 | The operation failed due to the app service on the remote system missing the SupportsRemoteSystems flag. |
NotAuthorized | 6 | The operation failed due to authorization. |
ResourceLimitsExceeded | 7 | The operation failed due to resource limits being exceeded. |
MessageSizeTooLarge | 8 | The operation failed due to the message size being too large. |
Failure | 9 | The operation failed. |
Unknown | 10 | An unknown error occurred. |
AuthenticationError | 11 | The operation failed due to unsuccessful account authentication. The user must re-validate the account to continue. |
NetworkNotAvailable | 12 | The operation failed due to lack of an internet connection. |
DisabledByPolicy | 13 | The operation failed, as the app service needed service or capabilities disabled by some policies on the local or remote device. |
WebServiceUnavailable | 14 | The operation failed because one or more necessary cloud services were temporarily unavailable. |
Remarks
Indicates success or failure of a SendStatelessMessageAsync operation.
Version history
Windows version | SDK version | Value added |
---|---|---|
2004 | 19041 | AuthenticationError |
2004 | 19041 | DisabledByPolicy |
2004 | 19041 | NetworkNotAvailable |
2004 | 19041 | WebServiceUnavailable |