Fusion.ASM_CACHE_FLAGS Enumeration
See Also 
SourceCode.Framework Namespace : Fusion.ASM_CACHE_FLAGS Enumeration



Glossary Item Box

The ASM_CACHE_FLAGS enumeration contains the following values: ASM_CACHE_ZAP - Enumerates the cache of precompiled assemblies by using Ngen.exe. ASM_CACHE_GAC - Enumerates the global assembly cache. ASM_CACHE_DOWNLOAD - Enumerates the assemblies that have been downloaded on demand or that have been shadow-copied. ASM_CACHE_ROOT - Indicates that the GetCachePath function should return the path to the global assembly cache for the common language runtime (CLR) version 2.0. Meaningful only in the context of a call to GetCachePath. ASM_CACHE_ROOT_EX - Indicates that the GetCachePath function should return the path to the global assembly cache for CLR version 4. Meaningful only in the context of a call to GetCachePath.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum Fusion.ASM_CACHE_FLAGS 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As Fusion.ASM_CACHE_FLAGS
C# 
[Flags()]
public enum Fusion.ASM_CACHE_FLAGS : System.Enum 
C++/CLI 
[Flags()]
public enum class Fusion.ASM_CACHE_FLAGS : public System.Enum 

Members

MemberDescription
ASM_CACHE_DOWNLOAD 
ASM_CACHE_GAC 
ASM_CACHE_ROOT 
ASM_CACHE_ROOT_EX 
ASM_CACHE_ZAP 

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         SourceCode.Framework.Fusion.ASM_CACHE_FLAGS

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also