AssemblyLoadContext コンストラクター

定義

オーバーロード

AssemblyLoadContext()

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

AssemblyLoadContext(Boolean)

アンロードが有効かどうかを示す値を使用して、AssemblyLoadContext クラスの新しいインスタンスを初期化します。

AssemblyLoadContext(String, Boolean)

アンロードが有効かどうかを示す名前と値を使用して、AssemblyLoadContext クラスの新しいインスタンスを初期化します。

AssemblyLoadContext()

ソース:
AssemblyLoadContext.cs
ソース:
AssemblyLoadContext.cs
ソース:
AssemblyLoadContext.cs

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

protected:
 AssemblyLoadContext();
protected AssemblyLoadContext ();
Protected Sub New ()

注釈

このコンストラクターは保護されています。 呼び出すことができるのは、 AssemblyLoadContext クラスまたはその派生クラスのみです。

適用対象

AssemblyLoadContext(Boolean)

ソース:
AssemblyLoadContext.cs
ソース:
AssemblyLoadContext.cs
ソース:
AssemblyLoadContext.cs

アンロードが有効かどうかを示す値を使用して、AssemblyLoadContext クラスの新しいインスタンスを初期化します。

protected:
 AssemblyLoadContext(bool isCollectible);
protected AssemblyLoadContext (bool isCollectible);
new System.Runtime.Loader.AssemblyLoadContext : bool -> System.Runtime.Loader.AssemblyLoadContext
Protected Sub New (isCollectible As Boolean)

パラメーター

isCollectible
Boolean

Unload() を有効にするには true で、それ以外の場合は false です。 アンロードを有効にするにはパフォーマンス コストがあるため、既定値は false です。

注釈

このコンストラクターは保護されています。 呼び出すことができるのは、 AssemblyLoadContext クラスまたはその派生クラスのみです。

適用対象

AssemblyLoadContext(String, Boolean)

ソース:
AssemblyLoadContext.cs
ソース:
AssemblyLoadContext.cs
ソース:
AssemblyLoadContext.cs

アンロードが有効かどうかを示す名前と値を使用して、AssemblyLoadContext クラスの新しいインスタンスを初期化します。

public AssemblyLoadContext (string? name, bool isCollectible = false);
new System.Runtime.Loader.AssemblyLoadContext : string * bool -> System.Runtime.Loader.AssemblyLoadContext
Public Sub New (name As String, Optional isCollectible As Boolean = false)

パラメーター

name
String

新しいインスタンスの Name の値です。 この値は null の場合もあります。

isCollectible
Boolean

Unload() を有効にするには true で、それ以外の場合は false です。 アンロードを有効にするにはパフォーマンス コストがあるため、既定値は false です。

適用対象