Edit

Share via


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

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.

Remarks

This enumeration defines only two fields (Run and RunAndCollect) in .NET. In .NET Framework, it defines an additional three fields (ReflectionOnly, RunAndSave, and Save). For more information, see AssemblyBuilder class remarks.

Applies to

See also