1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 // EventAttributes are an enum defining the attributes associated with and Event.
6 // These are defined in CorHdr.h and are a combination of bits and enums.
7 
8 namespace System.Reflection
9 {
10     [Flags]
11     public enum EventAttributes
12     {
13         None = 0x0000,
14 
15         // This Enum matchs the CorEventAttr defined in CorHdr.h
16         SpecialName = 0x0200,     // event is special.  Name describes how.
17 
18         RTSpecialName = 0x0400,     // Runtime(metadata internal APIs) should check name encoding.
19 
20         ReservedMask = 0x0400,
21     }
22 }
23