1 write to CustomDebugInformationTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
776
this.
CustomDebugInformationTable
= new CustomDebugInformationTableReader(rowCounts[(int)TableIndex.CustomDebugInformation], IsDeclaredSorted(TableMask.CustomDebugInformation), hasCustomDebugInformationRefSizeCombined, guidHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
8 references to CustomDebugInformationTable
System.Reflection.Metadata (8)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
103
TableIndex.CustomDebugInformation => reader.
CustomDebugInformationTable
.RowSize,
184
TableIndex.CustomDebugInformation => reader.
CustomDebugInformationTable
.Block,
System\Reflection\Metadata\MetadataReader.cs (1)
777
totalRequiredSize += this.
CustomDebugInformationTable
.Block.Length;
System\Reflection\Metadata\PortablePdb\CustomDebugInformation.cs (3)
26
public EntityHandle Parent => _reader.
CustomDebugInformationTable
.GetParent(Handle);
27
public GuidHandle Kind => _reader.
CustomDebugInformationTable
.GetKind(Handle);
28
public BlobHandle Value => _reader.
CustomDebugInformationTable
.GetValue(Handle);
System\Reflection\Metadata\PortablePdb\HandleCollections.Debug.cs (2)
741
_lastRowId = reader.
CustomDebugInformationTable
.NumberOfRows;
749
reader.
CustomDebugInformationTable
.GetRange(handle, out _firstRowId, out _lastRowId);