Files
Dec2017-Script-Dump/mscorlib/System/Reflection/PropertyAttributes.cs
T
2026-06-04 11:42:34 +02:00

39 lines
1.3 KiB
C#

using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// <summary>Defines the attributes that can be associated with a property. These attribute values are defined in corhdr.h.</summary>
// Token: 0x02000267 RID: 615
[ComVisible(true)]
[Flags]
[Serializable]
public enum PropertyAttributes
{
/// <summary>Specifies that no attributes are associated with a property.</summary>
// Token: 0x04000B0E RID: 2830
None = 0,
/// <summary>Specifies that the property is special, with the name describing how the property is special.</summary>
// Token: 0x04000B0F RID: 2831
SpecialName = 512,
/// <summary>Specifies a flag reserved for runtime use only.</summary>
// Token: 0x04000B10 RID: 2832
ReservedMask = 62464,
/// <summary>Specifies that the metadata internal APIs check the name encoding.</summary>
// Token: 0x04000B11 RID: 2833
RTSpecialName = 1024,
/// <summary>Specifies that the property has a default value.</summary>
// Token: 0x04000B12 RID: 2834
HasDefault = 4096,
/// <summary>Reserved.</summary>
// Token: 0x04000B13 RID: 2835
Reserved2 = 8192,
/// <summary>Reserved.</summary>
// Token: 0x04000B14 RID: 2836
Reserved3 = 16384,
/// <summary>Reserved.</summary>
// Token: 0x04000B15 RID: 2837
Reserved4 = 32768
}
}