scripts
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.Reflection
|
||||
{
|
||||
/// <summary>Specifies the attributes of an event.</summary>
|
||||
// Token: 0x0200023D RID: 573
|
||||
[ComVisible(true)]
|
||||
[Flags]
|
||||
[Serializable]
|
||||
public enum EventAttributes
|
||||
{
|
||||
/// <summary>Specifies that the event has no attributes.</summary>
|
||||
// Token: 0x04000A29 RID: 2601
|
||||
None = 0,
|
||||
/// <summary>Specifies that the event is special in a way described by the name.</summary>
|
||||
// Token: 0x04000A2A RID: 2602
|
||||
SpecialName = 512,
|
||||
/// <summary>Specifies a reserved flag for common language runtime use only.</summary>
|
||||
// Token: 0x04000A2B RID: 2603
|
||||
ReservedMask = 1024,
|
||||
/// <summary>Specifies that the common language runtime should check name encoding.</summary>
|
||||
// Token: 0x04000A2C RID: 2604
|
||||
RTSpecialName = 1024
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user