TransportDisconnectedException Constructors

Definition

Overloads

TransportDisconnectedException()

Initializes a new instance of the TransportDisconnectedException class.

TransportDisconnectedException(String)

Initializes a new instance of the TransportDisconnectedException class.

TransportDisconnectedException(String, Exception)

Initializes a new instance of the TransportDisconnectedException class.

TransportDisconnectedException()

Initializes a new instance of the TransportDisconnectedException class.

public TransportDisconnectedException ();
Public Sub New ()

Applies to

TransportDisconnectedException(String)

Initializes a new instance of the TransportDisconnectedException class.

public TransportDisconnectedException (string message);
new Microsoft.Bot.Streaming.PayloadTransport.TransportDisconnectedException : string -> Microsoft.Bot.Streaming.PayloadTransport.TransportDisconnectedException
Public Sub New (message As String)

Parameters

message
String

A message describing the reason for the exception.

Applies to

TransportDisconnectedException(String, Exception)

Initializes a new instance of the TransportDisconnectedException class.

public TransportDisconnectedException (string message, Exception innerException);
new Microsoft.Bot.Streaming.PayloadTransport.TransportDisconnectedException : string * Exception -> Microsoft.Bot.Streaming.PayloadTransport.TransportDisconnectedException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

A message describing the reason for the exception.

innerException
Exception

A reference to an inner exception that caused this exception exception.

Applies to