1 write to DocumentTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
755this.DocumentTable = new DocumentTableReader(rowCounts[(int)TableIndex.Document], guidHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
8 references to DocumentTable
System.Reflection.Metadata (8)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
96TableIndex.Document => reader.DocumentTable.RowSize, 177TableIndex.Document => reader.DocumentTable.Block,
System\Reflection\Metadata\MetadataReader.cs (1)
756totalRequiredSize += this.DocumentTable.Block.Length;
System\Reflection\Metadata\PortablePdb\Document.cs (4)
35public DocumentNameBlobHandle Name => _reader.DocumentTable.GetName(Handle); 40public GuidHandle Language => _reader.DocumentTable.GetLanguage(Handle); 45public GuidHandle HashAlgorithm => _reader.DocumentTable.GetHashAlgorithm(Handle); 54public BlobHandle Hash => _reader.DocumentTable.GetHash(Handle);
System\Reflection\Metadata\PortablePdb\HandleCollections.Debug.cs (1)
24_lastRowId = reader.DocumentTable.NumberOfRows;