EventAttributes.cs 746 B

12345678910111213141516171819202122
  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. // EventAttributes are an enum defining the attributes associated with and Event.
  5. // These are defined in CorHdr.h and are a combination of bits and enums.
  6. namespace System.Reflection
  7. {
  8. [Flags]
  9. public enum EventAttributes
  10. {
  11. None = 0x0000,
  12. // This Enum matchs the CorEventAttr defined in CorHdr.h
  13. SpecialName = 0x0200, // event is special. Name describes how.
  14. RTSpecialName = 0x0400, // Runtime(metadata internal APIs) should check name encoding.
  15. ReservedMask = 0x0400,
  16. }
  17. }