2 instantiations of CustomDebugInformationHandleCollection
System.Reflection.Metadata (2)
System\Reflection\Metadata\MetadataReader.cs (2)
1049public CustomDebugInformationHandleCollection CustomDebugInformation => new CustomDebugInformationHandleCollection(this); 1400return new CustomDebugInformationHandleCollection(this, handle);
5 references to CustomDebugInformationHandleCollection
Microsoft.CodeAnalysis.Features (2)
PdbSourceDocument\DocumentDebugInfoReader.cs (1)
92var handles = _pdbReader.GetCustomDebugInformation(handle);
PdbSourceDocument\SymbolSourceDocumentFinder.cs (1)
156var handles = pdbReader.GetCustomDebugInformation(typeDefHandle);
System.Reflection.Metadata (2)
System\Reflection\Metadata\MetadataReader.cs (2)
1049public CustomDebugInformationHandleCollection CustomDebugInformation => new CustomDebugInformationHandleCollection(this); 1398public CustomDebugInformationHandleCollection GetCustomDebugInformation(EntityHandle handle)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (1)
23public static CustomDebugInformationHandleCollection GetCustomDebugInformation(this EntityHandle handle, MetadataReader reader) => reader.GetCustomDebugInformation(handle);