obfuz/Plugins/dnlib/DotNet/PropertyAttributes.cs

19 lines
500 B
C#
Raw Normal View History

2025-04-08 20:31:44 +08:00
// dnlib: See LICENSE.txt for more info
using System;
namespace dnlib.DotNet {
/// <summary>
/// Property attributes, see CorHdr.h/CorPropertyAttr
/// </summary>
[Flags]
public enum PropertyAttributes : ushort {
/// <summary>property is special. Name describes how.</summary>
SpecialName = 0x0200,
/// <summary>Runtime(metadata internal APIs) should check name encoding.</summary>
RTSpecialName = 0x0400,
/// <summary>Property has default</summary>
HasDefault = 0x1000,
}
}