using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// Specifies the attributes of an event.
// Token: 0x02000220 RID: 544
[Token(Token = "0x2000220")]
[Flags]
[ComVisible(true)]
[Serializable]
public enum EventAttributes
{
/// Specifies that the event has no attributes.
// Token: 0x04000A4D RID: 2637
[Token(Token = "0x4000A4D")]
None = 0,
/// Specifies that the event is special in a way described by the name.
// Token: 0x04000A4E RID: 2638
[Token(Token = "0x4000A4E")]
SpecialName = 512,
/// Specifies a reserved flag for common language runtime use only.
// Token: 0x04000A4F RID: 2639
[Token(Token = "0x4000A4F")]
ReservedMask = 1024,
/// Specifies that the common language runtime should check name encoding.
// Token: 0x04000A50 RID: 2640
[Token(Token = "0x4000A50")]
RTSpecialName = 1024
}
}