33 lines
995 B
C#
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: 0x02000219 RID: 537
|
|
[Token(Token = "0x2000219")]
|
|
[Flags]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum EventAttributes
|
|
{
|
|
/// <summary>Specifies that the event has no attributes.</summary>
|
|
// Token: 0x04000A43 RID: 2627
|
|
[Token(Token = "0x4000A43")]
|
|
None = 0,
|
|
/// <summary>Specifies that the event is special in a way described by the name.</summary>
|
|
// Token: 0x04000A44 RID: 2628
|
|
[Token(Token = "0x4000A44")]
|
|
SpecialName = 512,
|
|
/// <summary>Specifies a reserved flag for common language runtime use only.</summary>
|
|
// Token: 0x04000A45 RID: 2629
|
|
[Token(Token = "0x4000A45")]
|
|
ReservedMask = 1024,
|
|
/// <summary>Specifies that the common language runtime should check name encoding.</summary>
|
|
// Token: 0x04000A46 RID: 2630
|
|
[Token(Token = "0x4000A46")]
|
|
RTSpecialName = 1024
|
|
}
|
|
}
|