29 references to HasCustomDebugInformationTag
System.Reflection.Metadata (29)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (29)
168public static int HasCustomDebugInformation(EntityHandle handle) => (handle.RowId << (int)HasCustomDebugInformationTag.BitCount) | (int)ToHasCustomDebugInformationTag(handle.Kind); 555private static HasCustomDebugInformationTag ToHasCustomDebugInformationTag(HandleKind kind) 559case HandleKind.MethodDefinition: return HasCustomDebugInformationTag.MethodDef; 560case HandleKind.FieldDefinition: return HasCustomDebugInformationTag.Field; 561case HandleKind.TypeReference: return HasCustomDebugInformationTag.TypeRef; 562case HandleKind.TypeDefinition: return HasCustomDebugInformationTag.TypeDef; 563case HandleKind.Parameter: return HasCustomDebugInformationTag.Param; 564case HandleKind.InterfaceImplementation: return HasCustomDebugInformationTag.InterfaceImpl; 565case HandleKind.MemberReference: return HasCustomDebugInformationTag.MemberRef; 566case HandleKind.ModuleDefinition: return HasCustomDebugInformationTag.Module; 567case HandleKind.DeclarativeSecurityAttribute: return HasCustomDebugInformationTag.DeclSecurity; 568case HandleKind.PropertyDefinition: return HasCustomDebugInformationTag.Property; 569case HandleKind.EventDefinition: return HasCustomDebugInformationTag.Event; 570case HandleKind.StandaloneSignature: return HasCustomDebugInformationTag.StandAloneSig; 571case HandleKind.ModuleReference: return HasCustomDebugInformationTag.ModuleRef; 572case HandleKind.TypeSpecification: return HasCustomDebugInformationTag.TypeSpec; 573case HandleKind.AssemblyDefinition: return HasCustomDebugInformationTag.Assembly; 574case HandleKind.AssemblyReference: return HasCustomDebugInformationTag.AssemblyRef; 575case HandleKind.AssemblyFile: return HasCustomDebugInformationTag.File; 576case HandleKind.ExportedType: return HasCustomDebugInformationTag.ExportedType; 577case HandleKind.ManifestResource: return HasCustomDebugInformationTag.ManifestResource; 578case HandleKind.GenericParameter: return HasCustomDebugInformationTag.GenericParam; 579case HandleKind.GenericParameterConstraint: return HasCustomDebugInformationTag.GenericParamConstraint; 580case HandleKind.MethodSpecification: return HasCustomDebugInformationTag.MethodSpec; 581case HandleKind.Document: return HasCustomDebugInformationTag.Document; 582case HandleKind.LocalScope: return HasCustomDebugInformationTag.LocalScope; 583case HandleKind.LocalVariable: return HasCustomDebugInformationTag.LocalVariable; 584case HandleKind.LocalConstant: return HasCustomDebugInformationTag.LocalConstant; 585case HandleKind.ImportScope: return HasCustomDebugInformationTag.ImportScope;