using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Reflection { /// Specifies the attributes of an event. // Token: 0x02000219 RID: 537 [Token(Token = "0x2000219")] [Flags] [ComVisible(true)] [Serializable] public enum EventAttributes { /// Specifies that the event has no attributes. // Token: 0x04000A43 RID: 2627 [Token(Token = "0x4000A43")] None = 0, /// Specifies that the event is special in a way described by the name. // Token: 0x04000A44 RID: 2628 [Token(Token = "0x4000A44")] SpecialName = 512, /// Specifies a reserved flag for common language runtime use only. // Token: 0x04000A45 RID: 2629 [Token(Token = "0x4000A45")] ReservedMask = 1024, /// Specifies that the common language runtime should check name encoding. // Token: 0x04000A46 RID: 2630 [Token(Token = "0x4000A46")] RTSpecialName = 1024 } }