// EventAttributes.cs // // This code was automatically generated from // ECMA CLI XML Library Specification. // Generator: libgen.xsl // Source file: all.xml // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml // // (C) 2001 Ximian, Inc. http://www.ximian.com namespace System.Reflection { /// /// /// Specifies the attributes /// of an event. /// /// /// /// /// /// values may be combined using the bitwise OR operation to get the appropriate /// combination. /// /// /// These enums are defined in corhdr.h and are a combination of bits and /// enumerators. /// /// public enum EventAttributes { /// /// /// Specifies that the event has /// no attributes. /// /// None = 0, /// /// /// Specifies that the event is special in a way described by the name. /// /// SpecialName = 512, /// /// Specifies a reserved flag for Common Language Runtime use only. /// ReservedMask = 1024, /// /// Specifies that the Common Language Runtime should check name encoding. /// RTSpecialName = 1024, } // EventAttributes } // System.Reflection