LicenseManager.CreateWithContext メソッド

定義

ライセンス コンテキストを持つオブジェクト型のインスタンスを作成します。

オーバーロード

CreateWithContext(Type, LicenseContext)

ライセンス付きのインスタンスを使用できるコンテキストを指定して、指定した型のインスタンスを作成します。

CreateWithContext(Type, LicenseContext, Object[])

引数と、ライセンス付きのインスタンスを使用できるコンテキストを指定して、指定した型のインスタンスを作成します。

CreateWithContext(Type, LicenseContext)

ソース:
LicenseManager.cs
ソース:
LicenseManager.cs
ソース:
LicenseManager.cs

ライセンス付きのインスタンスを使用できるコンテキストを指定して、指定した型のインスタンスを作成します。

public:
 static System::Object ^ CreateWithContext(Type ^ type, System::ComponentModel::LicenseContext ^ creationContext);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static object CreateWithContext (Type type, System.ComponentModel.LicenseContext creationContext);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static object? CreateWithContext (Type type, System.ComponentModel.LicenseContext creationContext);
public static object CreateWithContext (Type type, System.ComponentModel.LicenseContext creationContext);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member CreateWithContext : Type * System.ComponentModel.LicenseContext -> obj
static member CreateWithContext : Type * System.ComponentModel.LicenseContext -> obj
Public Shared Function CreateWithContext (type As Type, creationContext As LicenseContext) As Object

パラメーター

type
Type

作成する型を表す Type

creationContext
LicenseContext

ライセンス付きのインスタンスをいつ使用できるかを指定する LicenseContext

戻り値

指定した型のインスタンス。

属性

注釈

LicenseContextパラメーターとして指定した はcreationContext、この Licenseの有効期間の としてCurrentContext使用されます。 メソッドは CreateWithContext 、 内の他のすべてのスレッドが AppDomainCurrentContext変更するのをブロックし、アトミック操作として動作できるようにします CreateWithContext

こちらもご覧ください

適用対象

CreateWithContext(Type, LicenseContext, Object[])

ソース:
LicenseManager.cs
ソース:
LicenseManager.cs
ソース:
LicenseManager.cs

引数と、ライセンス付きのインスタンスを使用できるコンテキストを指定して、指定した型のインスタンスを作成します。

public:
 static System::Object ^ CreateWithContext(Type ^ type, System::ComponentModel::LicenseContext ^ creationContext, cli::array <System::Object ^> ^ args);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static object CreateWithContext (Type type, System.ComponentModel.LicenseContext creationContext, object[] args);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static object? CreateWithContext (Type type, System.ComponentModel.LicenseContext creationContext, object[] args);
public static object CreateWithContext (Type type, System.ComponentModel.LicenseContext creationContext, object[] args);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member CreateWithContext : Type * System.ComponentModel.LicenseContext * obj[] -> obj
static member CreateWithContext : Type * System.ComponentModel.LicenseContext * obj[] -> obj
Public Shared Function CreateWithContext (type As Type, creationContext As LicenseContext, args As Object()) As Object

パラメーター

type
Type

作成する型を表す Type

creationContext
LicenseContext

ライセンス付きのインスタンスをいつ使用できるかを指定する LicenseContext

args
Object[]

型の引数を表す Object 型の配列。

戻り値

指定した配列の引数を持つ、指定した型のインスタンス。

属性

注釈

LicenseContextパラメーターとして指定した はcreationContext、この Licenseの有効期間の としてCurrentContext使用されます。 このメソッドは、 内の他のすべてのスレッドが AppDomainCurrentContext変更するのをブロックし、アトミック操作として動作できるようにします CreateWithContext

こちらもご覧ください

適用対象