This documentation is archived and is not being maintained.
AssemblyNameFlags Enumeration
.NET Framework 1.1
Provides information about an Assembly reference.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> Public Enum AssemblyNameFlags [C#] [Flags] [Serializable] public enum AssemblyNameFlags [C++] [Flags] [Serializable] __value public enum AssemblyNameFlags [JScript] public Flags Serializable enum AssemblyNameFlags
Remarks
These flags are not used in the AssemblyName for a loaded assembly. They describe whether the user has provided a full or compressed public key in an AssemblyName that will be used to load an assembly.
Members
| Member name | Description | Value |
|---|---|---|
| None Supported by the .NET Compact Framework. | Specifies that no flags are in effect. | 0 |
| PublicKey Supported by the .NET Compact Framework. | Specifies that a public key is formed from the full public key rather than the public key token. | 1 |
| Retargetable Supported by the .NET Compact Framework. | Specifies that the assembly can be retargeted at runtime to an assembly from a different publisher. | 256 |
Requirements
Namespace: System.Reflection
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
Assembly: Mscorlib (in Mscorlib.dll)
See Also
Show: