AutomationNotificationProcessing 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 order in which to process a notification.
public enum class AutomationNotificationProcessing
public enum AutomationNotificationProcessing
type AutomationNotificationProcessing =
Public Enum AutomationNotificationProcessing
- Inheritance
Fields
Name | Value | Description |
---|---|---|
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. |
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 other notifications. |
All | 2 | These notifications should be presented to the user when possible. All the notifications from this source should be delivered to the user. |
MostRecent | 3 | These notifications should be presented to the user when possible. Interrupt the current notification for this one. |
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, keep the most recent and ignore the rest until the current processing is completed. Then use the most recent message as the current message. |