Enum TopicSelectorMode

Indicates the mode of selection for nodes indicated by the selector.

Namespace: PushTechnology.ClientInterface.Client.Enums
Assembly: Diffusion.Client.dll
Syntax
public enum TopicSelectorMode : int

Fields

Name Description
ALL

Selected nodes and all of their descendants are selected (that is the pattern ends with a '//').

DESCENDANTS

Only descendants of matching nodes are selected (that is the pattern ends with a '/').

SELECTED

Only matching nodes are selected (that is the pattern does not end with a '/').

Back to top