/Mono.Cecil/PropertyAttributes.cs
C# | 23 lines | 11 code | 3 blank | 9 comment | 0 complexity | 4bd02e02611eee046ded64300ee70cba MD5 | raw file
1// 2// Author: 3// Jb Evain (jbevain@gmail.com) 4// 5// Copyright (c) 2008 - 2015 Jb Evain 6// Copyright (c) 2008 - 2011 Novell, Inc. 7// 8// Licensed under the MIT/X11 license. 9// 10 11using System; 12 13namespace Mono.Cecil { 14 15 [Flags] 16 public enum PropertyAttributes : ushort { 17 None = 0x0000, 18 SpecialName = 0x0200, // Property is special 19 RTSpecialName = 0x0400, // Runtime(metadata internal APIs) should check name encoding 20 HasDefault = 0x1000, // Property has default 21 Unused = 0xe9ff // Reserved: shall be zero in a conforming implementation 22 } 23}