言語

CommunicationObjectFaultedException コンストラクター

定義

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

オーバーロード

名前 説明
CommunicationObjectFaultedException()

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

CommunicationObjectFaultedException(String)

指定したメッセージを使用して、 CommunicationObjectFaultedException クラスの新しいインスタンスを初期化します。

CommunicationObjectFaultedException(SerializationInfo, StreamingContext)

指定したCommunicationObjectFaultedExceptionオブジェクトとSerializationInfo オブジェクトを使用してストリームを逆シリアル化するときに、StreamingContext クラスの新しいインスタンスを初期化します。

CommunicationObjectFaultedException(String, Exception)

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

CommunicationObjectFaultedException()

ソース:
CommunicationObjectFaultedException.cs
ソース:
CommunicationObjectFaultedException.cs
ソース:
CommunicationObjectFaultedException.cs

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

public:
 CommunicationObjectFaultedException();
public CommunicationObjectFaultedException();
Public Sub New ()

注釈

新しい CommunicationObjectFaultedExceptionを作成します。

適用対象

CommunicationObjectFaultedException(String)

ソース:
CommunicationObjectFaultedException.cs
ソース:
CommunicationObjectFaultedException.cs
ソース:
CommunicationObjectFaultedException.cs

指定したメッセージを使用して、 CommunicationObjectFaultedException クラスの新しいインスタンスを初期化します。

public:
 CommunicationObjectFaultedException(System::String ^ message);
public CommunicationObjectFaultedException(string message);
new System.ServiceModel.CommunicationObjectFaultedException : string -> System.ServiceModel.CommunicationObjectFaultedException
Public Sub New (message As String)

パラメーター

message
String

例外を説明するメッセージ。

注釈

指定したCommunicationObjectFaultedExceptionを使用して新しいmessageを作成します。

適用対象

CommunicationObjectFaultedException(SerializationInfo, StreamingContext)

ソース:
CommunicationObjectFaultedException.cs
ソース:
CommunicationObjectFaultedException.cs
ソース:
CommunicationObjectFaultedException.cs

指定したCommunicationObjectFaultedExceptionオブジェクトとSerializationInfo オブジェクトを使用してストリームを逆シリアル化するときに、StreamingContext クラスの新しいインスタンスを初期化します。

protected:
 CommunicationObjectFaultedException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected CommunicationObjectFaultedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ServiceModel.CommunicationObjectFaultedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ServiceModel.CommunicationObjectFaultedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

パラメーター

info
SerializationInfo

例外オブジェクトの作成に使用されるシリアル化情報。

context
StreamingContext

例外オブジェクトが作成されるコンテキスト。

注釈

このコンストラクターは、ストリームから CommunicationObjectFaultedException オブジェクトを逆シリアル化するときに呼び出されます。

適用対象

CommunicationObjectFaultedException(String, Exception)

ソース:
CommunicationObjectFaultedException.cs
ソース:
CommunicationObjectFaultedException.cs
ソース:
CommunicationObjectFaultedException.cs

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

public:
 CommunicationObjectFaultedException(System::String ^ message, Exception ^ innerException);
public CommunicationObjectFaultedException(string message, Exception innerException);
new System.ServiceModel.CommunicationObjectFaultedException : string * Exception -> System.ServiceModel.CommunicationObjectFaultedException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外メッセージです。

innerException
Exception

内部例外。

注釈

指定したCommunicationObjectFaultedExceptionmessageを使用して、新しいinnerExceptionを作成します。

適用対象