// dnlib: See LICENSE.txt for more info using System; namespace dnlib.DotNet { /// /// Event attributes, see CorHdr.h/CorEventAttr /// [Flags] public enum EventAttributes : ushort { /// event is special. Name describes how. SpecialName = 0x0200, /// Runtime(metadata internal APIs) should check name encoding. RTSpecialName = 0x0400, } }