TargetException コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
TargetException クラスの新しいインスタンスを初期化します。
オーバーロード
TargetException() |
空のメッセージとエラーの根本原因を使用して、TargetException クラスの新しいインスタンスを初期化します。 |
TargetException(String) |
指定したメッセージとエラーの根本原因例外を使用して、TargetException クラスの新しいインスタンスを初期化します。 |
TargetException(SerializationInfo, StreamingContext) |
古い.
指定したシリアル化とコンテキスト情報を使用して、TargetException クラスの新しいインスタンスを初期化します。 |
TargetException(String, Exception) |
指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、TargetException クラスの新しいインスタンスを初期化します。 |
TargetException()
空のメッセージとエラーの根本原因を使用して、TargetException クラスの新しいインスタンスを初期化します。
public:
TargetException();
public TargetException ();
Public Sub New ()
注釈
InnerException
プロパティが にnull
設定され、HRESULT エラー コードが COR_E_TARGET に設定されています。
TargetException
は から継承されます Exception。 このコンストラクターは、次の表に Exception
示すように、 オブジェクトのプロパティを設定します。
プロパティ | 値 |
---|---|
InnerException | null |
Message | 空の文字列 ("")。 |
適用対象
TargetException(String)
指定したメッセージとエラーの根本原因例外を使用して、TargetException クラスの新しいインスタンスを初期化します。
public:
TargetException(System::String ^ message);
public TargetException (string? message);
public TargetException (string message);
new System.Reflection.TargetException : string -> System.Reflection.TargetException
Public Sub New (message As String)
パラメーター
- message
- String
例外が発生した理由を説明する String
。
注釈
TargetException
は から継承されます Exception。 このコンストラクターは、次の表に Exception
示すように、 オブジェクトのプロパティを設定します。
プロパティ | [値] |
---|---|
InnerException | null |
Message | メッセージ文字列。 |
適用対象
TargetException(SerializationInfo, StreamingContext)
注意事項
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
指定したシリアル化とコンテキスト情報を使用して、TargetException クラスの新しいインスタンスを初期化します。
protected:
TargetException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected TargetException (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 TargetException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Reflection.TargetException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Reflection.TargetException
[<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.Reflection.TargetException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Reflection.TargetException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
パラメーター
- info
- SerializationInfo
オブジェクトをシリアル化または逆シリアル化するためのデータ。
- context
- StreamingContext
オブジェクトのソースとデスティネーション。
- 属性
適用対象
TargetException(String, Exception)
指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、TargetException クラスの新しいインスタンスを初期化します。
public:
TargetException(System::String ^ message, Exception ^ inner);
public TargetException (string? message, Exception? inner);
public TargetException (string message, Exception inner);
new System.Reflection.TargetException : string * Exception -> System.Reflection.TargetException
Public Sub New (message As String, inner As Exception)
パラメーター
- message
- String
例外の原因を説明するエラー メッセージ。
- inner
- Exception
現在の例外の原因となった例外。
inner
パラメーターが null
でない場合は、内部例外を処理する catch
ブロックで現在の例外が発生します。
注釈
前の例外の直接の結果としてスローされる例外については、InnerException プロパティに、前の例外への参照を含める必要があります。
InnerException プロパティは、コンストラクターに渡されるのと同じ値を返します。または、InnerException プロパティがコンストラクターに内部例外値を提供しない場合には null
を返します。
次の表に、TargetException のインスタンスに対するプロパティの初期値を示します。
プロパティ | [値] |
---|---|
InnerException | 内部例外の参照。 |
Message | エラー メッセージ文字列。 |
こちらもご覧ください
適用対象
.NET