Condividi tramite


ServerBusyException Constructors

Definition

Overloads

ServerBusyException()

Creates a new instance of the ServerBusyException class.

ServerBusyException(String)

Creates a new instance of the ServerBusyException class with a specified error message.

ServerBusyException(SerializationInfo, StreamingContext)

Creates a new instance of the ServerBusyException class with serialized data.

ServerBusyException(String, Exception)

Creates a new instance of the ServerBusyException class with a specified error message and a reference to the inner exception that is the cause of this exception.

ServerBusyException()

Creates a new instance of the ServerBusyException class.

public ServerBusyException ();
Public Sub New ()

Applies to

ServerBusyException(String)

Creates a new instance of the ServerBusyException class with a specified error message.

public ServerBusyException (string message);
new Microsoft.Azure.Relay.ServerBusyException : string -> Microsoft.Azure.Relay.ServerBusyException
Public Sub New (message As String)

Parameters

message
String

The message that describes the error.

Applies to

ServerBusyException(SerializationInfo, StreamingContext)

Creates a new instance of the ServerBusyException class with serialized data.

protected ServerBusyException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.Azure.Relay.ServerBusyException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.Azure.Relay.ServerBusyException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The SerializationInfo that holds the serialized object data about the exception being thrown.

context
StreamingContext

The StreamingContext that contains contextual information about the source or destination.

Applies to

ServerBusyException(String, Exception)

Creates a new instance of the ServerBusyException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public ServerBusyException (string message, Exception innerException);
new Microsoft.Azure.Relay.ServerBusyException : string * Exception -> Microsoft.Azure.Relay.ServerBusyException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message that describes the error.

innerException
Exception

The exception that is the cause of the current exception.

Applies to