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.Security.Policy
{
/// <summary>Defines special attribute flags for security policy on code groups.</summary>
// Token: 0x0200059B RID: 1435
[Flags]
[ComVisible(true)]
[Serializable]
public enum PolicyStatementAttribute
{
/// <summary>No flags are set.</summary>
// Token: 0x0400156C RID: 5484
Nothing = 0,
/// <summary>The exclusive code group flag. When a code group has this flag set, only the permissions associated with that code group are granted to code belonging to the code group. At most, one code group matching a given piece of code can be set as exclusive.</summary>
// Token: 0x0400156D RID: 5485
Exclusive = 1,
/// <summary>The flag representing a policy statement that causes lower policy levels to not be evaluated as part of the resolve operation, effectively allowing the policy level to override lower levels.</summary>
// Token: 0x0400156E RID: 5486
LevelFinal = 2,
/// <summary>All attribute flags are set.</summary>
// Token: 0x0400156F RID: 5487
All = 3
}
}