AssemblyBuilderAccess | serializable, flag |
System.Reflection.Emit (mscorlib.dll) | enum |
This enumeration is used by
the
System.AppDomain.DefineDynamicAssembly( ) method.
It specifies whether a dynamic assembly will support dynamic
execution only (Run), save to disk only
(Save), or both (RunAndSave).
public enum AssemblyBuilderAccess {
Run = 0x00000001,
Save = 0x00000002,
RunAndSave = 0x00000003
}
Hierarchy
System.Object
System.ValueType
System.Enum(System.IComparable,
System.IFormattable, System.IConvertible)
AssemblyBuilderAccess
Passed To
System.AppDomain.DefineDynamicAssembly( )
|