Class TopicSelectorFormatException

The exception indicating that a topic selector expression is invalid.

Inheritance
System.Object
System.Exception
System.SystemException
System.FormatException
TopicSelectorFormatException
Implements
System.Runtime.Serialization.ISerializable
Inherited Members
System.Exception.GetBaseException()
System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
System.Exception.GetType()
System.Exception.ToString()
System.Exception.Data
System.Exception.HelpLink
System.Exception.HResult
System.Exception.InnerException
System.Exception.Message
System.Exception.Source
System.Exception.StackTrace
System.Exception.TargetSite
System.Exception.SerializeObjectState
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: PushTechnology.ClientInterface.Client.Topics
Assembly: Diffusion.Client.dll
Syntax
[Obsolete("Topic selectors are now deprecated and will be removed in a future release. Use string expressions instead.", false)]
public class TopicSelectorFormatException : FormatException, ISerializable
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.

System.Exception innerException

The exception that is the cause of the current exception.

Implements

System.Runtime.Serialization.ISerializable
Back to top