Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Reflection/EventAttributes.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

33 lines
995 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Specifies the attributes of an event.</summary>
// Token: 0x02000220 RID: 544
[Token(Token = "0x2000220")]
[Flags]
[ComVisible(true)]
[Serializable]
public enum EventAttributes
{
/// <summary>Specifies that the event has no attributes.</summary>
// Token: 0x04000A4D RID: 2637
[Token(Token = "0x4000A4D")]
None = 0,
/// <summary>Specifies that the event is special in a way described by the name.</summary>
// Token: 0x04000A4E RID: 2638
[Token(Token = "0x4000A4E")]
SpecialName = 512,
/// <summary>Specifies a reserved flag for common language runtime use only.</summary>
// Token: 0x04000A4F RID: 2639
[Token(Token = "0x4000A4F")]
ReservedMask = 1024,
/// <summary>Specifies that the common language runtime should check name encoding.</summary>
// Token: 0x04000A50 RID: 2640
[Token(Token = "0x4000A50")]
RTSpecialName = 1024
}
}