1 write to ExportedTypeTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
728
this.
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)
19
return exportedType.reader.
ExportedTypeTable
.GetTypeDefId(exportedType.rowId);
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
88
TableIndex.ExportedType => reader.
ExportedTypeTable
.RowSize,
169
TableIndex.ExportedType => reader.
ExportedTypeTable
.Block,
System\Reflection\Metadata\MetadataReader.cs (2)
729
totalRequiredSize += this.
ExportedTypeTable
.Block.Length;
1038
public ExportedTypeHandleCollection ExportedTypes => new ExportedTypeHandleCollection(
ExportedTypeTable
.NumberOfRows);
System\Reflection\Metadata\TypeSystem\ExportedType.cs (5)
31
get { return reader.
ExportedTypeTable
.GetFlags(rowId); }
44
get { return reader.
ExportedTypeTable
.GetTypeName(rowId); }
54
return reader.
ExportedTypeTable
.GetTypeNamespaceString(rowId);
67
return reader.
ExportedTypeTable
.GetTypeNamespace(rowId);
85
return reader.
ExportedTypeTable
.GetImplementation(rowId);