InvalidOleVariantTypeException コンストラクター

定義

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

オーバーロード

InvalidOleVariantTypeException()

InvalidOleVariantTypeException クラスの新しいインスタンスを既定値で初期化します。

InvalidOleVariantTypeException(String)

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

InvalidOleVariantTypeException(SerializationInfo, StreamingContext)
古い.

シリアル化データから、InvalidOleVariantTypeException クラスの新しいインスタンスを初期化します。

InvalidOleVariantTypeException(String, Exception)

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

InvalidOleVariantTypeException()

ソース:
InvalidOleVariantTypeException.cs
ソース:
InvalidOleVariantTypeException.cs
ソース:
InvalidOleVariantTypeException.cs

InvalidOleVariantTypeException クラスの新しいインスタンスを既定値で初期化します。

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

注釈

InvalidOleVariantTypeException は、SystemException から継承されます。 このコンストラクターは、次の表に Exception 示すように、 オブジェクトのプロパティを設定します。

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

適用対象

InvalidOleVariantTypeException(String)

ソース:
InvalidOleVariantTypeException.cs
ソース:
InvalidOleVariantTypeException.cs
ソース:
InvalidOleVariantTypeException.cs

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

public:
 InvalidOleVariantTypeException(System::String ^ message);
public InvalidOleVariantTypeException (string message);
public InvalidOleVariantTypeException (string? message);
new System.Runtime.InteropServices.InvalidOleVariantTypeException : string -> System.Runtime.InteropServices.InvalidOleVariantTypeException
Public Sub New (message As String)

パラメーター

message
String

例外の理由を示すメッセージ。

注釈

InvalidOleVariantTypeException は、SystemException から継承されます。 このコンストラクターは、次の表に Exception 示すように、 オブジェクトのプロパティを設定します。

プロパティ
InnerException null.
Message message

適用対象

InvalidOleVariantTypeException(SerializationInfo, StreamingContext)

ソース:
InvalidOleVariantTypeException.cs
ソース:
InvalidOleVariantTypeException.cs
ソース:
InvalidOleVariantTypeException.cs

注意事項

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

シリアル化データから、InvalidOleVariantTypeException クラスの新しいインスタンスを初期化します。

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

パラメーター

info
SerializationInfo

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

context
StreamingContext

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

属性

例外

infonull です。

注釈

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

InvalidOleVariantTypeException は、SystemException から継承されます。

適用対象

InvalidOleVariantTypeException(String, Exception)

ソース:
InvalidOleVariantTypeException.cs
ソース:
InvalidOleVariantTypeException.cs
ソース:
InvalidOleVariantTypeException.cs

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

public:
 InvalidOleVariantTypeException(System::String ^ message, Exception ^ inner);
public InvalidOleVariantTypeException (string message, Exception inner);
public InvalidOleVariantTypeException (string? message, Exception? inner);
new System.Runtime.InteropServices.InvalidOleVariantTypeException : string * Exception -> System.Runtime.InteropServices.InvalidOleVariantTypeException
Public Sub New (message As String, inner As Exception)

パラメーター

message
String

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

inner
Exception

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

注釈

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

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

プロパティ [値]
InnerException 内部例外の参照。
Message エラー メッセージ文字列。

こちらもご覧ください

適用対象