Interface ITopicPathSelector

A selector that selects a single topic path.

Inherited Members
ITopicSelector.Type
ITopicSelector.Expression
ITopicSelector.PathPrefix
ITopicSelector.Selects(String)
Namespace: PushTechnology.ClientInterface.Client.Topics
Assembly: Diffusion.Client.dll
Syntax
public interface ITopicPathSelector : ITopicSelector
Remarks

Caution

Deprecated since 6.4. Topic selectors are no longer verified locally by the client library. Instead System.String expressions will be sent to (and verified by) the Diffusion server. This interface will be removed in a future release.


Added in 5.0.

Properties

Path

Return the associated topic path. The result will be in a normalised form with no leading or trailing '/'.

Declaration
string Path { get; }
Property Value
Type Description
System.String

The associated topic path.

Back to top