EndpointNotFoundException コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
EndpointNotFoundException クラスの新しいインスタンスを初期化します。
オーバーロード
EndpointNotFoundException() |
EndpointNotFoundException クラスの新しいインスタンスを初期化します。 |
EndpointNotFoundException(String) |
指定したエラー メッセージを使用して、EndpointNotFoundException クラスの新しいインスタンスを初期化します。 |
EndpointNotFoundException(SerializationInfo, StreamingContext) |
ストリームの転送元と転送先と、例外をシリアル化するために必要な情報を指定するデータを使用して、EndpointNotFoundException クラスの新しいインスタンスを初期化します。 |
EndpointNotFoundException(String, Exception) |
指定したエラー メッセージと現在の例外の発生原因である内部例外を使用して、EndpointNotFoundException クラスの新しいインスタンスを初期化します。 |
注釈
ユーザーにエラー メッセージを渡す場合は、EndpointNotFoundException(String) コンストラクターを使用します。
例外の原因となった内部例外のエラー メッセージとその参照をユーザーに渡す場合は、EndpointNotFoundException(String, Exception) コンストラクターを使用します。
シリアル化情報およびストリーム コンテキストを渡す場合は、EndpointNotFoundException(SerializationInfo, StreamingContext) コンストラクターを使用します。
EndpointNotFoundException()
EndpointNotFoundException クラスの新しいインスタンスを初期化します。
public:
EndpointNotFoundException();
public EndpointNotFoundException ();
Public Sub New ()
適用対象
EndpointNotFoundException(String)
指定したエラー メッセージを使用して、EndpointNotFoundException クラスの新しいインスタンスを初期化します。
public:
EndpointNotFoundException(System::String ^ message);
public EndpointNotFoundException (string message);
new System.ServiceModel.EndpointNotFoundException : string -> System.ServiceModel.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);
protected EndpointNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ServiceModel.EndpointNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ServiceModel.EndpointNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
パラメーター
- info
- SerializationInfo
例外をシリアル化するために必要なすべてのデータを含む SerializationInfo。
- context
- StreamingContext
ストリームの転送元および転送先を指定する StreamingContext。
注釈
このコンストラクターは、逆シリアル化中に、ストリームを介して送信された例外オブジェクトを再構築するために呼び出されます。
適用対象
EndpointNotFoundException(String, Exception)
指定したエラー メッセージと現在の例外の発生原因である内部例外を使用して、EndpointNotFoundException クラスの新しいインスタンスを初期化します。
public:
EndpointNotFoundException(System::String ^ message, Exception ^ innerException);
public EndpointNotFoundException (string message, Exception innerException);
new System.ServiceModel.EndpointNotFoundException : string * Exception -> System.ServiceModel.EndpointNotFoundException
Public Sub New (message As String, innerException As Exception)
パラメーター
- message
- String
例外の原因を説明するエラー メッセージ。
注釈
内部例外についてのエラー メッセージと情報をユーザーに渡す場合にこのコンストラクターを使用します。 メッセージ パラメーターの内容は、想定されるユーザーが理解できるものであることが必要です。
前の例外の直接の結果としてスローされる例外は、InnerException プロパティに前の例外への参照を含んでいる場合があります。
InnerException プロパティは、コンストラクターに渡される値と同じ値を返します。また、null
プロパティが内部例外の値をコンストラクターに提供しない場合は、Nothing
参照 (Visual Basic では InnerException) を返します。
適用対象
.NET