RuntimeEnvironment.FromGlobalAccessCache(Assembly) Yöntem

Tanım

Belirtilen derlemenin genel derleme önbelleğine yüklenip yüklenmediğini sınar.

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

Parametreler

a
Assembly

Test için derleme.

Döndürülenler

true derleme genel bütünleştirilmiş kod önbelleğine yüklenirse; aksi takdirde , false.

Örnekler

Aşağıdaki örnekte yönteminin çağrılması gösterilmektedir FromGlobalAccessCache . Bu kod örneği, sınıfı için RuntimeEnvironment sağlanan daha büyük bir örneğin parçasıdır.

// 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))

Şunlara uygulanır