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 Passed ToSystem.AppDomain.DefineDynamicAssembly( ) ![]() |