AutomationNotificationProcessing Enum

Definition

Specifies the order in which to process a notification.

public enum class AutomationNotificationProcessing
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 327680)]
enum class AutomationNotificationProcessing
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 327680)]
public enum AutomationNotificationProcessing
Public Enum AutomationNotificationProcessing
Inheritance
AutomationNotificationProcessing
Attributes

Windows requirements

Device family
Windows 10 Fall Creators Update (introduced in 10.0.16299.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v5.0)

Fields

All 2

These notifications should be presented to the user when possible. All of the notifications from this source should be delivered to the user.

CurrentThenMostRecent 4

These notifications should be presented to the user when possible. Don’t interrupt the current notification for this one. If new notifications come in from the same source while the current notification is being presented, then keep the most recent and ignore the rest until the current processing is completed. Then use the most recent message as the current message.

ImportantAll 0

These notifications should be presented to the user as soon as possible. All of the notifications from this source should be delivered to the user.

Warning

Use this in a limited capacity as this style of message could cause a flooding for information to the end user due to the nature of the request to deliver all of the notifications.

ImportantMostRecent 1

These notifications should be presented to the user as soon as possible. The most recent notifications from this source should be delivered to the user because the most recent notification supersedes all of the other notifications.

MostRecent 3

These notifications should be presented to the user when possible. Interrupt the current notification for this one.

Applies to