This documentation is archived and is not being maintained.
AssemblyBuilderAccess Enumeration
.NET Framework 1.1
Defines the access modes for a dynamic assembly.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> Public Enum AssemblyBuilderAccess [C#] [Flags] [Serializable] public enum AssemblyBuilderAccess [C++] [Flags] [Serializable] __value public enum AssemblyBuilderAccess [JScript] public Flags Serializable enum AssemblyBuilderAccess
Members
| Member name | Description | Value |
|---|---|---|
| Run | Represents that the dynamic assembly can be executed, but not saved. | 1 |
| RunAndSave | Represents that the dynamic assembly can be executed and saved. | 3 |
| Save | Represents that the dynamic assembly can be saved, but not executed. | 2 |
Requirements
Namespace: System.Reflection.Emit
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
Show: