Class TopicNotificationSelectionMode

Specifies the mode when selecting topic ranges for notification.

Inheritance
System.Object
AdvancedEnum<TopicNotificationSelectionMode>
CodeEnum<TopicNotificationSelectionMode, System.String>
TopicNotificationSelectionMode
Inherited Members
CodeEnum<TopicNotificationSelectionMode, String>.Code
CodeEnum<TopicNotificationSelectionMode, String>.Enum
CodeEnum<TopicNotificationSelectionMode, String>.FromCode(String)
AdvancedEnum<TopicNotificationSelectionMode>.INTERNAL_ENUM
AdvancedEnum<TopicNotificationSelectionMode>.Name
AdvancedEnum<TopicNotificationSelectionMode>.ValueOf(String)
AdvancedEnum<TopicNotificationSelectionMode>.Values()
AdvancedEnum<TopicNotificationSelectionMode>.ToString()
Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public class TopicNotificationSelectionMode : CodeEnum<TopicNotificationSelectionMode, string>

Fields

ADD

This indicates that the specified set of topic names and/or selectors should be added to any existing selection.

Declaration
public static readonly TopicNotificationSelectionMode ADD
Field Value
Type Description
TopicNotificationSelectionMode

The topic notification selection mode for addition.

CLEAR

Specifies that all current selections should be removed.

Declaration
public static readonly TopicNotificationSelectionMode CLEAR
Field Value
Type Description
TopicNotificationSelectionMode

The topic notification selection mode for the removal of all current selections.

REMOVE

Specifies that the specified set of topic names and/or selectors should be removed from the current set of selections. Only string values that exactly match previously set selectors will be removed.

Declaration
public static readonly TopicNotificationSelectionMode REMOVE
Field Value
Type Description
TopicNotificationSelectionMode

The topic notification selection mode for removal.

REPLACE

This indicates that the specified set of topic names and/or selectors should replace any current selections.

Declaration
public static readonly TopicNotificationSelectionMode REPLACE
Field Value
Type Description
TopicNotificationSelectionMode

The topic notification selection mode for replacement.

Back to top