AutomationNotificationProcessing Перечисление
Определение
Указывает порядок, в котором должны обрабатываться уведомления.Specifies the order in which to process a notification.
public enum class AutomationNotificationProcessing
public enum AutomationNotificationProcessing
type AutomationNotificationProcessing =
Public Enum AutomationNotificationProcessing
- Наследование
Поля
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. |
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. |