AssemblyLoadContext コンストラクター

定義

オーバーロード

名前 説明
AssemblyLoadContext()

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

AssemblyLoadContext(Boolean)

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

AssemblyLoadContext(String, Boolean)

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

AssemblyLoadContext()

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

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

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

注釈

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

適用対象

AssemblyLoadContext(Boolean)

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

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

注釈

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

適用対象

AssemblyLoadContext(String, Boolean)

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

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

適用対象