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.cs
ソース:
LicenseException.cs
ソース:
LicenseException.cs

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

public:
 LicenseException(Type ^ type);
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)

ソース:
LicenseException.cs
ソース:
LicenseException.cs
ソース:
LicenseException.cs

注意事項

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

指定した 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);
[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 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
[<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.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.cs
ソース:
LicenseException.cs
ソース:
LicenseException.cs

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

public:
 LicenseException(Type ^ type, System::Object ^ instance);
public LicenseException (Type type, 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.cs
ソース:
LicenseException.cs
ソース:
LicenseException.cs

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

public:
 LicenseException(Type ^ type, System::Object ^ instance, System::String ^ message);
public LicenseException (Type type, object instance, 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.cs
ソース:
LicenseException.cs
ソース:
LicenseException.cs

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

public:
 LicenseException(Type ^ type, System::Object ^ instance, System::String ^ message, Exception ^ innerException);
public LicenseException (Type type, object instance, 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

こちらもご覧ください

適用対象