Class UnhandledMessageException

The exception indicating that a message was not delivered to an application handler.

Inheritance
System.Object
System.Exception
SessionException
UnhandledMessageException
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.Features
Assembly: Diffusion.Client.dll
Syntax
public class UnhandledMessageException : SessionException, ISerializable
Remarks

For messages addressed to a session or sessions using the IMessaging feature, this exception indicates a message was delivered to a session, but the session has no local handler for the message path.

For messages addressed to the server using the IMessaging feature, this exception indicates the server has no handler registered for the message path.

Since 6.0

Constructors

UnhandledMessageException(String)

Creates a new UnhandledMessageException

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

The error message.

UnhandledMessageException(String, Exception)

Creates a new UnhandledMessageException.

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

The error message.

System.Exception innerException

The exception that caused the UnhandledMessageException.

Implements

System.Runtime.Serialization.ISerializable
Back to top