BarrierPostPhaseException コンストラクター

定義

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

オーバーロード

BarrierPostPhaseException()

エラーを説明するシステム提供メッセージを使用して、BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

BarrierPostPhaseException(Exception)

指定した内部例外を使用して、BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

BarrierPostPhaseException(String)

指定したメッセージでエラーを説明する BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

BarrierPostPhaseException(SerializationInfo, StreamingContext)
古い.

シリアル化したデータを使用して、BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

BarrierPostPhaseException(String, Exception)

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

BarrierPostPhaseException()

ソース:
Barrier.cs
ソース:
Barrier.cs
ソース:
Barrier.cs

エラーを説明するシステム提供メッセージを使用して、BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

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

注釈

このコンストラクターは、新しいインスタンスの プロパティを、"postPhaseAction が例外で失敗しました" などのエラーを説明するシステム指定のメッセージに初期化 Message します。このメッセージでは、現在のシステム カルチャが考慮されます。

次の表に、BarrierPostPhaseException のインスタンスに対するプロパティの初期値を示します。

プロパティ
InnerException null.
Message ローカライズされたエラー メッセージ文字列。

こちらもご覧ください

適用対象

BarrierPostPhaseException(Exception)

ソース:
Barrier.cs
ソース:
Barrier.cs
ソース:
Barrier.cs

指定した内部例外を使用して、BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

public:
 BarrierPostPhaseException(Exception ^ innerException);
public BarrierPostPhaseException (Exception innerException);
public BarrierPostPhaseException (Exception? innerException);
new System.Threading.BarrierPostPhaseException : Exception -> System.Threading.BarrierPostPhaseException
Public Sub New (innerException As Exception)

パラメーター

innerException
Exception

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

こちらもご覧ください

適用対象

BarrierPostPhaseException(String)

ソース:
Barrier.cs
ソース:
Barrier.cs
ソース:
Barrier.cs

指定したメッセージでエラーを説明する BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

public:
 BarrierPostPhaseException(System::String ^ message);
public BarrierPostPhaseException (string message);
public BarrierPostPhaseException (string? message);
new System.Threading.BarrierPostPhaseException : string -> System.Threading.BarrierPostPhaseException
Public Sub New (message As String)

パラメーター

message
String

例外を説明するメッセージ。 このコンストラクターの呼び出し元は、この文字列が現在のシステム環境向けにローカライズされていることを確認する必要があります。

注釈

次の表に、BarrierPostPhaseException のインスタンスに対するプロパティの初期値を示します。

プロパティ
InnerException null.
Message message で指定したエラー メッセージ文字列。

こちらもご覧ください

適用対象

BarrierPostPhaseException(SerializationInfo, StreamingContext)

ソース:
Barrier.cs
ソース:
Barrier.cs
ソース:
Barrier.cs

注意事項

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

シリアル化したデータを使用して、BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

protected:
 BarrierPostPhaseException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected BarrierPostPhaseException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected BarrierPostPhaseException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Security.SecurityCritical]
protected BarrierPostPhaseException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Threading.BarrierPostPhaseException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Threading.BarrierPostPhaseException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Threading.BarrierPostPhaseException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Threading.BarrierPostPhaseException
[<System.Security.SecurityCritical>]
new System.Threading.BarrierPostPhaseException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Threading.BarrierPostPhaseException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

パラメーター

info
SerializationInfo

シリアル化されたオブジェクト データを保持するオブジェクト。

context
StreamingContext

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

属性

注釈

このコンストラクターは、シリアル化解除の際に呼び出されて、ストリームで送信された例外オブジェクトを再構成します。

こちらもご覧ください

適用対象

BarrierPostPhaseException(String, Exception)

ソース:
Barrier.cs
ソース:
Barrier.cs
ソース:
Barrier.cs

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、BarrierPostPhaseException クラスの新しいインスタンスを初期化します。

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

パラメーター

message
String

例外を説明するメッセージ。 このコンストラクターの呼び出し元は、この文字列が現在のシステム環境向けにローカライズされていることを確認する必要があります。

innerException
Exception

現在の例外の原因となった例外。 innerException パラメーターが null でない場合は、内部例外を処理する catch ブロックで現在の例外が発生します。

注釈

前の例外の直接の結果としてスローされる例外については、InnerException プロパティに、前の例外への参照を含める必要があります。 InnerException プロパティは、コンストラクターに渡されるのと同じ値を返します。または、InnerException プロパティがコンストラクターに内部例外値を提供しない場合には null を返します。

次の表に、BarrierPostPhaseException のインスタンスに対するプロパティの初期値を示します。

プロパティ
InnerException null.
Message message で指定したエラー メッセージ文字列。

こちらもご覧ください

適用対象