1 write to ExportedTypeTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
728this.ExportedTypeTable = new ExportedTypeTableReader(rowCounts[(int)TableIndex.ExportedType], implementationRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
10 references to ExportedTypeTable
System.Reflection.Metadata (10)
System\Reflection\Metadata\Ecma335\ExportedTypeExtensions.cs (1)
19return exportedType.reader.ExportedTypeTable.GetTypeDefId(exportedType.rowId);
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
88TableIndex.ExportedType => reader.ExportedTypeTable.RowSize, 169TableIndex.ExportedType => reader.ExportedTypeTable.Block,
System\Reflection\Metadata\MetadataReader.cs (2)
729totalRequiredSize += this.ExportedTypeTable.Block.Length; 1038public ExportedTypeHandleCollection ExportedTypes => new ExportedTypeHandleCollection(ExportedTypeTable.NumberOfRows);
System\Reflection\Metadata\TypeSystem\ExportedType.cs (5)
31get { return reader.ExportedTypeTable.GetFlags(rowId); } 44get { return reader.ExportedTypeTable.GetTypeName(rowId); } 54return reader.ExportedTypeTable.GetTypeNamespaceString(rowId); 67return reader.ExportedTypeTable.GetTypeNamespace(rowId); 85return reader.ExportedTypeTable.GetImplementation(rowId);