1 write to CustomDebugInformationTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
776this.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)
103TableIndex.CustomDebugInformation => reader.CustomDebugInformationTable.RowSize, 184TableIndex.CustomDebugInformation => reader.CustomDebugInformationTable.Block,
System\Reflection\Metadata\MetadataReader.cs (1)
777totalRequiredSize += this.CustomDebugInformationTable.Block.Length;
System\Reflection\Metadata\PortablePdb\CustomDebugInformation.cs (3)
26public EntityHandle Parent => _reader.CustomDebugInformationTable.GetParent(Handle); 27public GuidHandle Kind => _reader.CustomDebugInformationTable.GetKind(Handle); 28public BlobHandle Value => _reader.CustomDebugInformationTable.GetValue(Handle);
System\Reflection\Metadata\PortablePdb\HandleCollections.Debug.cs (2)
741_lastRowId = reader.CustomDebugInformationTable.NumberOfRows; 749reader.CustomDebugInformationTable.GetRange(handle, out _firstRowId, out _lastRowId);