using System;
namespace System.Security
{
/// Specifies the scope of a .
// Token: 0x020005CC RID: 1484
public enum SecurityCriticalScope
{
/// The attribute applies only to the immediate target.
// Token: 0x0400162A RID: 5674
Explicit,
/// The attribute applies to all code that follows it.
// Token: 0x0400162B RID: 5675
Everything
}
}