AssemblyBuilderAccess Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the access modes for a dynamic assembly.
This enumeration supports a bitwise combination of its member values.
public enum class AssemblyBuilderAccess
[System.Flags]
public enum AssemblyBuilderAccess
[System.Flags]
[System.Serializable]
public enum AssemblyBuilderAccess
[System.Flags]
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum AssemblyBuilderAccess
[<System.Flags>]
type AssemblyBuilderAccess =
[<System.Flags>]
[<System.Serializable>]
type AssemblyBuilderAccess =
[<System.Flags>]
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type AssemblyBuilderAccess =
Public Enum AssemblyBuilderAccess
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Run | 1 | The dynamic assembly can be executed, but not saved. |
Save | 2 | The dynamic assembly can be saved, but not executed. |
RunAndSave | 3 | The dynamic assembly can be executed and saved. |
ReflectionOnly | 6 | The dynamic assembly is loaded into the reflection-only context, and cannot be executed. |
RunAndCollect | 9 | The dynamic assembly will be automatically unloaded and its memory reclaimed, when it's no longer accessible. |