PushNotificationChannelStatus 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.
Specifies the status of a push channel created with a call to CreateChannelAsync).
public enum class PushNotificationChannelStatus
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Windows.PushNotifications.PushNotificationsContract, 65536)]
enum class PushNotificationChannelStatus
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Windows.PushNotifications.PushNotificationsContract), 65536)]
public enum PushNotificationChannelStatus
var value = Microsoft.Windows.PushNotifications.PushNotificationChannelStatus.inProgress
Public Enum PushNotificationChannelStatus
- Inheritance
-
PushNotificationChannelStatus
- Attributes
Fields
Name | Value | Description |
---|---|---|
InProgress | 0 | The push channel creation request is in progress. |
InProgressRetry | 1 | The push channel creation request is in progress and is in a backoff retry state. Check the PushNotificationCreateChannelResult.ExtendedError property to get the last extended error seen when creating a channel request. |
CompletedSuccess | 2 | The push channel creation request completed succesfully. |
CompletedFailure | 3 | The push channel creation request failed with a critical internal error. Check the PushNotificationCreateChannelResult.ExtendedError property to get the last extended error seen when creating a channel request. |