AssemblyBuilderAccess Enum

Definition

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
AssemblyBuilderAccess
Attributes

Fields

ReflectionOnly 6

The dynamic assembly is loaded into the reflection-only context, and cannot be executed.

Run 1

The dynamic assembly can be executed, but not saved.

RunAndCollect 9

The dynamic assembly will be automatically unloaded and its memory reclaimed, when it's no longer accessible.

RunAndSave 3

The dynamic assembly can be executed and saved.

Save 2

The dynamic assembly can be saved, but not executed.

Applies to