AutomationNotificationProcessing Enum

Definition

Specifies the order in which to process a notification.

public enum class AutomationNotificationProcessing
public enum AutomationNotificationProcessing
type AutomationNotificationProcessing = 
Public Enum AutomationNotificationProcessing
Inheritance
AutomationNotificationProcessing

Fields

All 2

These notifications should be presented to the user when possible. All 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, 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.

IMPORTANT: Limit the use of this option, since delivery of all notifications to the user can cause a overwhelming flood of information.

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.

MostRecent 3

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

Applies to