次の方法で共有


ServerErrorException コンストラクター

定義

オーバーロード

ServerErrorException()

ServerErrorException クラスの新しいインスタンスを初期化します。

ServerErrorException(String)

指定されたエラー メッセージで ServerErrorException クラスの新しいインスタンスを初期化します。

ServerErrorException(SerializationInfo, StreamingContext)

指定したシリアル化情報とストリーム コンテキストを使用して、ServerErrorException クラスの新しいインスタンスを初期化します。

ServerErrorException(String, Exception)

指定したエラー メッセージと内部例外を使用して、ServerErrorException クラスの新しいインスタンスを初期化します。

ServerErrorException()

ServerErrorException クラスの新しいインスタンスを初期化します。

public ServerErrorException ();
Public Sub New ()

適用対象

ServerErrorException(String)

指定されたエラー メッセージで ServerErrorException クラスの新しいインスタンスを初期化します。

public ServerErrorException (string message);
new Microsoft.ServiceBus.ServerErrorException : string -> Microsoft.ServiceBus.ServerErrorException
Public Sub New (message As String)

パラメーター

message
String

この例外を説明するエラー メッセージ。

適用対象

ServerErrorException(SerializationInfo, StreamingContext)

指定したシリアル化情報とストリーム コンテキストを使用して、ServerErrorException クラスの新しいインスタンスを初期化します。

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

パラメーター

info
SerializationInfo

スローされた例外についての、シリアル化されたオブジェクトのデータを保持します。

context
StreamingContext

転送元または転送先に関するコンテキスト情報。

適用対象

ServerErrorException(String, Exception)

指定したエラー メッセージと内部例外を使用して、ServerErrorException クラスの新しいインスタンスを初期化します。

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

パラメーター

message
String

この例外を説明するエラー メッセージ。

innerException
Exception

現在の例外がスローされる原因となった例外。

適用対象