1 write to ImportScopeTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
770this.ImportScopeTable = new ImportScopeTableReader(rowCounts[(int)TableIndex.ImportScope], GetReferenceSize(rowCounts, TableIndex.ImportScope), blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
6 references to ImportScopeTable
System.Reflection.Metadata (6)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
101TableIndex.ImportScope => reader.ImportScopeTable.RowSize, 182TableIndex.ImportScope => reader.ImportScopeTable.Block,
System\Reflection\Metadata\MetadataReader.cs (1)
771totalRequiredSize += this.ImportScopeTable.Block.Length;
System\Reflection\Metadata\PortablePdb\HandleCollections.Debug.cs (1)
642_lastRowId = reader.ImportScopeTable.NumberOfRows;
System\Reflection\Metadata\PortablePdb\ImportScope.cs (2)
32public ImportScopeHandle Parent => _reader.ImportScopeTable.GetParent(Handle); 33public BlobHandle ImportsBlob => _reader.ImportScopeTable.GetImports(Handle);