LicenseException コンストラクター

定義

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

オーバーロード

名前 説明
LicenseException(Type)

ライセンスが拒否されたコンポーネントの種類に対して、LicenseException クラスの新しいインスタンスを初期化します。

LicenseException(SerializationInfo, StreamingContext)

指定した LicenseExceptionSerializationInfoを使用して、StreamingContext クラスの新しいインスタンスを初期化します。

LicenseException(Type, Object)

ライセンスが拒否されたコンポーネントの型とインスタンスの LicenseException クラスの新しいインスタンスを初期化します。

LicenseException(Type, Object, String)

ライセンスが拒否されたコンポーネントの型とインスタンスの LicenseException クラスの新しいインスタンスを、表示するメッセージと共に初期化します。

LicenseException(Type, Object, String, Exception)

ライセンスが拒否されたコンポーネントの型とインスタンスの LicenseException クラスの新しいインスタンスを、表示するメッセージとスローされた元の例外と共に初期化します。

LicenseException(Type)

ライセンスが拒否されたコンポーネントの種類に対して、LicenseException クラスの新しいインスタンスを初期化します。

public:
 LicenseException(Type ^ type);
public LicenseException(Type type);
new System.ComponentModel.LicenseException : Type -> System.ComponentModel.LicenseException
Public Sub New (type As Type)

パラメーター

type
Type

ライセンスが付与されていないコンポーネントの種類を表す Type

こちらもご覧ください

適用対象

LicenseException(SerializationInfo, StreamingContext)

指定した LicenseExceptionSerializationInfoを使用して、StreamingContext クラスの新しいインスタンスを初期化します。

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

パラメーター

info
SerializationInfo

逆シリアル化に使用する SerializationInfo

context
StreamingContext

逆シリアル化に使用する宛先。

適用対象

LicenseException(Type, Object)

ライセンスが拒否されたコンポーネントの型とインスタンスの LicenseException クラスの新しいインスタンスを初期化します。

public:
 LicenseException(Type ^ type, System::Object ^ instance);
public LicenseException(Type type, object instance);
new System.ComponentModel.LicenseException : Type * obj -> System.ComponentModel.LicenseException
Public Sub New (type As Type, instance As Object)

パラメーター

type
Type

ライセンスが付与されていないコンポーネントの種類を表す Type

instance
Object

ライセンスが付与されていないコンポーネントのインスタンス。

こちらもご覧ください

適用対象

LicenseException(Type, Object, String)

ライセンスが拒否されたコンポーネントの型とインスタンスの LicenseException クラスの新しいインスタンスを、表示するメッセージと共に初期化します。

public:
 LicenseException(Type ^ type, System::Object ^ instance, System::String ^ message);
public LicenseException(Type type, object instance, string message);
new System.ComponentModel.LicenseException : Type * obj * string -> System.ComponentModel.LicenseException
Public Sub New (type As Type, instance As Object, message As String)

パラメーター

type
Type

ライセンスが付与されていないコンポーネントの種類を表す Type

instance
Object

ライセンスが付与されていないコンポーネントのインスタンス。

message
String

表示する例外メッセージ。

こちらもご覧ください

適用対象

LicenseException(Type, Object, String, Exception)

ライセンスが拒否されたコンポーネントの型とインスタンスの LicenseException クラスの新しいインスタンスを、表示するメッセージとスローされた元の例外と共に初期化します。

public:
 LicenseException(Type ^ type, System::Object ^ instance, System::String ^ message, Exception ^ innerException);
public LicenseException(Type type, object instance, string message, Exception innerException);
new System.ComponentModel.LicenseException : Type * obj * string * Exception -> System.ComponentModel.LicenseException
Public Sub New (type As Type, instance As Object, message As String, innerException As Exception)

パラメーター

type
Type

ライセンスが付与されていないコンポーネントの種類を表す Type

instance
Object

ライセンスが付与されていないコンポーネントのインスタンス。

message
String

表示する例外メッセージ。

innerException
Exception

元の例外を表す Exception

こちらもご覧ください

適用対象