27 lines
884 B
C#
27 lines
884 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Reflection.Emit
|
|
{
|
|
/// <summary>Defines the access modes for a dynamic assembly.</summary>
|
|
// Token: 0x020001E1 RID: 481
|
|
[ComVisible(true)]
|
|
[Flags]
|
|
[Serializable]
|
|
public enum AssemblyBuilderAccess
|
|
{
|
|
/// <summary>Represents that the dynamic assembly can be executed, but not saved.</summary>
|
|
// Token: 0x0400076D RID: 1901
|
|
Run = 1,
|
|
/// <summary>Represents that the dynamic assembly can be saved, but not executed.</summary>
|
|
// Token: 0x0400076E RID: 1902
|
|
Save = 2,
|
|
/// <summary>Represents that the dynamic assembly can be executed and saved.</summary>
|
|
// Token: 0x0400076F RID: 1903
|
|
RunAndSave = 3,
|
|
/// <summary>Represents that the dynamic assembly is loaded into the reflection-only context, and cannot be executed.</summary>
|
|
// Token: 0x04000770 RID: 1904
|
|
ReflectionOnly = 6
|
|
}
|
|
}
|