This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,32 @@
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
}
}