次の方法で共有


EndpointNotFoundException コンストラクター

定義

オーバーロード

EndpointNotFoundException()

EndpointNotFoundException クラスの新しいインスタンスを作成します。

EndpointNotFoundException(String)

指定したエラー メッセージを使用して EndpointNotFoundException クラスの新しいインスタンスを作成します。

EndpointNotFoundException(SerializationInfo, StreamingContext)

シリアル化されたデータを使用して EndpointNotFoundException クラスの新しいインスタンスを作成します。

EndpointNotFoundException(String, Exception)

指定したエラー メッセージとこの例外の原因になった内部例外への参照を使用して、EndpointNotFoundException クラスの新しいインスタンスを作成します。

EndpointNotFoundException()

EndpointNotFoundException クラスの新しいインスタンスを作成します。

public EndpointNotFoundException ();
Public Sub New ()

適用対象

EndpointNotFoundException(String)

指定したエラー メッセージを使用して EndpointNotFoundException クラスの新しいインスタンスを作成します。

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

パラメーター

message
String

エラーを説明するメッセージ。

適用対象

EndpointNotFoundException(SerializationInfo, StreamingContext)

シリアル化されたデータを使用して EndpointNotFoundException クラスの新しいインスタンスを作成します。

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

パラメーター

info
SerializationInfo

スローされている例外に関するシリアル化済みオブジェクト データを保持している SerializationInfo

context
StreamingContext

転送元または転送先についてのコンテキスト情報を含む StreamingContext です。

適用対象

EndpointNotFoundException(String, Exception)

指定したエラー メッセージとこの例外の原因になった内部例外への参照を使用して、EndpointNotFoundException クラスの新しいインスタンスを作成します。

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

パラメーター

message
String

エラーを説明するメッセージ。

innerException
Exception

現在の例外の原因となった例外。

適用対象