Enum TopicSelectorFormat

The selector type.

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

Fields

Name Description
ALL

Selects all topic nodes under a topic node (optionally including the topic node itself).

NAME

Selects a topic node by full name returning either the node, all topics subordinate to it or the node AND all topic nodes subordinate to it.

PATTERN

Selects topic nodes by a single regular expression pattern applied to the full hierarchic name.

The nodes selected can be returned or all nodes beneath them, or all selected nodes AND all nodes beneath them.

PATTERNS

Selects topic nodes by nested regular expression patterns, each pattern separated by a '/' representing a level of the topic tree hierarchy.

The nodes selected can be returned or all nodes beneath them, or all selected nodes AND all nodes beneath them.

Back to top