27 lines
819 B
C#
27 lines
819 B
C#
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
|
|
}
|
|
}
|