AutomationNotificationProcessing Enum

Definition

Specifies the order in which to process a notification when calling RaiseNotificationEvent(AutomationNotificationKind, AutomationNotificationProcessing, String, String).

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

Fields

All 2

All of the notifications from this source should be delivered to the user.

CurrentThenMostRecent 4

Don't interrupt the current notification for this notification. If new notifications come in from the same source while the current notification is being presented, keep the most recent notification and ignore the rest until the current processing is completed. Then, use the most recent message as the current message.

ImportantAll 0

All of the notifications from this source should be delivered to the user. Use this style of message in a limited capacity as it could cause a flooding of information to the end user.

ImportantMostRecent 1

The most recent notification from this source should be delivered to the user because it supersedes all of the other notifications.

MostRecent 3

The most recent notification from this source should be delivered to the user because it supersedes all of the other notifications.

Applies to