Class TopicSelectorFormatException

The exception indicating that a topic selector expression is invalid.

Inheritance
System.Object
TopicSelectorFormatException
Namespace: PushTechnology.ClientInterface.Client.Topics
Assembly: Diffusion.Client.dll
Syntax
public class TopicSelectorFormatException : FormatException
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 class will be removed in a future release.


Added in 6.2.

Constructors

TopicSelectorFormatException(String)

Initializes a new instance of the TopicSelectorFormatException class.

Declaration
public TopicSelectorFormatException(string message)
Parameters
Type Name Description
System.String message

The error message.

TopicSelectorFormatException(String, Exception)

Initializes a new instance of the TopicSelectorFormatException class.

Declaration
public TopicSelectorFormatException(string message, Exception innerException)
Parameters
Type Name Description
System.String message

The error message.

Exception innerException

The exception that is the cause of the current exception.

Back to top