AssemblyBuilderAccess 枚举

定义

定义动态程序集的访问模式。

此枚举支持其成员值的按位组合。

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
继承
AssemblyBuilderAccess
属性

字段

ReflectionOnly 6

动态程序集被加载到只反射上下文中,因此无法执行。

Run 1

可以执行但无法保存该动态程序集。

RunAndCollect 9

当动态程序集不再可供访问时,将自动卸载该程序集,并回收其内存。

RunAndSave 3

可以执行和保存该动态程序集。

Save 2

可以保存但无法执行该动态程序集。

适用于