Bagikan melalui


RuntimeEnvironment.FromGlobalAccessCache(Assembly) Metode

Definisi

Menguji apakah assembly yang ditentukan dimuat dalam cache assembly global.

public:
 static bool FromGlobalAccessCache(System::Reflection::Assembly ^ a);
public static bool FromGlobalAccessCache (System.Reflection.Assembly a);
static member FromGlobalAccessCache : System.Reflection.Assembly -> bool
Public Shared Function FromGlobalAccessCache (a As Assembly) As Boolean

Parameter

a
Assembly

Perakitan untuk diuji.

Mengembalikan

true jika assembly dimuat dalam cache assembly global; jika tidak, false.

Contoh

Contoh berikut menunjukkan pemanggilan FromGlobalAccessCache metode . Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk RuntimeEnvironment kelas .

// Show whether the EXE assembly was loaded from the GAC or from a
// private subdirectory.
Console::WriteLine("Did the {0} assembly load from the GAC? {1}",
    Assembly::GetExecutingAssembly(),
    RuntimeEnvironment::FromGlobalAccessCache(
    Assembly::GetExecutingAssembly()));
// Show whether the EXE assembly was loaded from the GAC or from a private subdirectory.
Assembly assem = typeof(App).Assembly;
Console.WriteLine("Did the {0} assembly load from the GAC? {1}",
   assem, RuntimeEnvironment.FromGlobalAccessCache(assem));
' Show whether the EXE assembly was loaded from the GAC or from a private subdirectory.
Dim assem As Assembly = GetType(App).Assembly
Console.WriteLine("Did the {0} assembly load from the GAC? {1}", 
                  assem, RuntimeEnvironment.FromGlobalAccessCache(assem))

Berlaku untuk