This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,26 @@
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
}
}