C# Class IrcShark.Extensions.Chatting.UnsupportedProtocolException

The UnsupportedProtocolException is thrown if a ProtocolExtension gets objects not supported by its protocol.
Inheritance: System.Exception
ファイルを表示 Open project: hapm/IrcShark

Public Methods

Method Description
UnsupportedProtocolException ( ) : System

Initializes a new instance of the UnsupportedProtocolException class.

UnsupportedProtocolException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the UnsupportedProtocolException class.

UnsupportedProtocolException ( string message ) : System

Initializes a new instance of the UnsupportedProtocolException class.

UnsupportedProtocolException ( string message, Exception innerException ) : System

Initializes a new instance of the UnsupportedProtocolException class.

Method Details

UnsupportedProtocolException() public method

Initializes a new instance of the UnsupportedProtocolException class.
public UnsupportedProtocolException ( ) : System
return System

UnsupportedProtocolException() public method

Initializes a new instance of the UnsupportedProtocolException class.
public UnsupportedProtocolException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The serialization information.
context System.Runtime.Serialization.StreamingContext The streaming context.
return System

UnsupportedProtocolException() public method

Initializes a new instance of the UnsupportedProtocolException class.
public UnsupportedProtocolException ( string message ) : System
message string The message to use with the exception.
return System

UnsupportedProtocolException() public method

Initializes a new instance of the UnsupportedProtocolException class.
public UnsupportedProtocolException ( string message, Exception innerException ) : System
message string The message to use with the exception.
innerException System.Exception The inner exception causing this exception.
return System