AggregateException コンストラクター

定義

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

オーバーロード

AggregateException()

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

AggregateException(IEnumerable<Exception>)

この例外の原因である内部例外への参照を使用して、AggregateException クラスの新しいインスタンスを初期化します。

AggregateException(Exception[])

この例外の原因である内部例外への参照を使用して、AggregateException クラスの新しいインスタンスを初期化します。

AggregateException(String)

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

AggregateException(SerializationInfo, StreamingContext)
古い.

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

AggregateException(String, IEnumerable<Exception>)

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

AggregateException(String, Exception)

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

AggregateException(String, Exception[])

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

AggregateException()

ソース:
AggregateException.cs
ソース:
AggregateException.cs
ソース:
AggregateException.cs

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

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

注釈

このコンストラクターは、新しいインスタンスの プロパティを、"System.AggregateException: 1 つ以上のエラーが発生しました" などのエラーを説明するシステム指定のメッセージに初期化 Message します。このメッセージでは、現在のシステム カルチャが考慮されます。

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

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

こちらもご覧ください

適用対象

AggregateException(IEnumerable<Exception>)

ソース:
AggregateException.cs
ソース:
AggregateException.cs
ソース:
AggregateException.cs

この例外の原因である内部例外への参照を使用して、AggregateException クラスの新しいインスタンスを初期化します。

public:
 AggregateException(System::Collections::Generic::IEnumerable<Exception ^> ^ innerExceptions);
public AggregateException (System.Collections.Generic.IEnumerable<Exception> innerExceptions);
new AggregateException : seq<Exception> -> AggregateException
Public Sub New (innerExceptions As IEnumerable(Of Exception))

パラメーター

innerExceptions
IEnumerable<Exception>

現在の例外の原因である例外。

例外

innerExceptions 引数が null です。

innerExceptions の要素が null です。

適用対象

AggregateException(Exception[])

ソース:
AggregateException.cs
ソース:
AggregateException.cs
ソース:
AggregateException.cs

この例外の原因である内部例外への参照を使用して、AggregateException クラスの新しいインスタンスを初期化します。

public:
 AggregateException(... cli::array <Exception ^> ^ innerExceptions);
public AggregateException (params Exception[] innerExceptions);
new AggregateException : Exception[] -> AggregateException
Public Sub New (ParamArray innerExceptions As Exception())

パラメーター

innerExceptions
Exception[]

現在の例外の原因である例外。

例外

innerExceptions 引数が null です。

innerExceptions の要素が null です。

適用対象

AggregateException(String)

ソース:
AggregateException.cs
ソース:
AggregateException.cs
ソース:
AggregateException.cs

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

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

パラメーター

message
String

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

注釈

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

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

こちらもご覧ください

適用対象

AggregateException(SerializationInfo, StreamingContext)

ソース:
AggregateException.cs
ソース:
AggregateException.cs
ソース:
AggregateException.cs

注意事項

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

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

protected:
 AggregateException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected AggregateException (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 AggregateException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Security.SecurityCritical]
protected AggregateException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new AggregateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> AggregateException
[<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 AggregateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> AggregateException
[<System.Security.SecurityCritical>]
new AggregateException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> AggregateException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

パラメーター

info
SerializationInfo

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

context
StreamingContext

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

属性

例外

info 引数が null です。

例外を正しく逆シリアル化できませんでした。

注釈

このコンストラクターは、シリアル化解除の際に呼び出されて、ストリームで送信された例外オブジェクトを再構成します。 詳細については、「 XML および SOAP のシリアル化」を参照してください。

こちらもご覧ください

適用対象

AggregateException(String, IEnumerable<Exception>)

ソース:
AggregateException.cs
ソース:
AggregateException.cs
ソース:
AggregateException.cs

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

public:
 AggregateException(System::String ^ message, System::Collections::Generic::IEnumerable<Exception ^> ^ innerExceptions);
public AggregateException (string message, System.Collections.Generic.IEnumerable<Exception> innerExceptions);
public AggregateException (string? message, System.Collections.Generic.IEnumerable<Exception> innerExceptions);
new AggregateException : string * seq<Exception> -> AggregateException
Public Sub New (message As String, innerExceptions As IEnumerable(Of Exception))

パラメーター

message
String

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

innerExceptions
IEnumerable<Exception>

現在の例外の原因である例外。

例外

innerExceptions 引数が null です。

innerExceptions の要素が null です。

適用対象

AggregateException(String, Exception)

ソース:
AggregateException.cs
ソース:
AggregateException.cs
ソース:
AggregateException.cs

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

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

パラメーター

message
String

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

innerException
Exception

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

例外

innerException 引数が null です。

注釈

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

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

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

こちらもご覧ください

適用対象

AggregateException(String, Exception[])

ソース:
AggregateException.cs
ソース:
AggregateException.cs
ソース:
AggregateException.cs

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

public:
 AggregateException(System::String ^ message, ... cli::array <Exception ^> ^ innerExceptions);
public AggregateException (string message, params Exception[] innerExceptions);
public AggregateException (string? message, params Exception[] innerExceptions);
new AggregateException : string * Exception[] -> AggregateException
Public Sub New (message As String, ParamArray innerExceptions As Exception())

パラメーター

message
String

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

innerExceptions
Exception[]

現在の例外の原因である例外。

例外

innerExceptions 引数が null です。

innerExceptions の要素が null です。

適用対象