| File: System\Reflection\Metadata\Signatures\SignatureKind.cs | Web Access |
| Project: src\runtime\src\libraries\System.Reflection.Metadata\src\System.Reflection.Metadata.csproj (System.Reflection.Metadata) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Reflection.Metadata { /// <summary> /// Specifies the signature kind. Underlying values correspond to the representation /// in the leading signature byte represented by <see cref="SignatureHeader"/>. /// </summary> public enum SignatureKind : byte { /// <summary> /// Method reference, method definition, or standalone method signature. /// </summary> Method = 0x0, /// <summary> /// Field signature. /// </summary> Field = 0x6, /// <summary> /// Local variables signature. /// </summary> LocalVariables = 0x7, /// <summary> /// Property signature. /// </summary> Property = 0x8, /// <summary> /// Method specification signature. /// </summary> MethodSpecification = 0xA, } }