10 references to PropertyMap
System.Reflection.Metadata (10)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
164case TableIndex.PropertyMap: SetTableCapacity(_propertyMapTable, rowCount); break; 257case TableIndex.PropertyMap : return _propertyMapTable.Count; 329rowCounts[(int)TableIndex.PropertyMap] = _propertyMapTable.Count; 1732if (metadataSizes.IsPresent(TableIndex.PropertyMap))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
70TableIndex.PropertyMap => reader.PropertyMapTable.RowSize, 151TableIndex.PropertyMap => reader.PropertyMapTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (1)
293size += GetTableSize(TableIndex.PropertyMap, typeDefReferenceSize + propertyDefReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
39PropertyMap = 1UL << TableIndex.PropertyMap, 217internal const uint PropertyMap = (uint)TableIndex.PropertyMap;
System\Reflection\Metadata\MetadataReader.cs (1)
674this.PropertyMapTable = new PropertyMapTableReader(rowCounts[(int)TableIndex.PropertyMap], GetReferenceSize(rowCounts, TableIndex.TypeDef), propertyRefSizeSorted, metadataTablesMemoryBlock, totalRequiredSize);