using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Specifies the attributes of an event.
// Token: 0x0200023D RID: 573
[ComVisible(true)]
[Flags]
[Serializable]
public enum EventAttributes
{
/// Specifies that the event has no attributes.
// Token: 0x04000A29 RID: 2601
None = 0,
/// Specifies that the event is special in a way described by the name.
// Token: 0x04000A2A RID: 2602
SpecialName = 512,
/// Specifies a reserved flag for common language runtime use only.
// Token: 0x04000A2B RID: 2603
ReservedMask = 1024,
/// Specifies that the common language runtime should check name encoding.
// Token: 0x04000A2C RID: 2604
RTSpecialName = 1024
}
}