1 write to PropertyMapTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
674
this.
PropertyMapTable
= new PropertyMapTableReader(rowCounts[(int)TableIndex.PropertyMap], GetReferenceSize(rowCounts, TableIndex.TypeDef), propertyRefSizeSorted, metadataTablesMemoryBlock, totalRequiredSize);
10 references to PropertyMapTable
System.Reflection.Metadata (10)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (4)
70
TableIndex.PropertyMap => reader.
PropertyMapTable
.RowSize,
151
TableIndex.PropertyMap => reader.
PropertyMapTable
.Block,
345
for (int rid = 1; rid <= reader.
PropertyMapTable
.NumberOfRows; rid++)
347
yield return reader.
PropertyMapTable
.GetParentType(rid);
System\Reflection\Metadata\MetadataReader.cs (6)
675
totalRequiredSize += this.
PropertyMapTable
.Block.Length;
902
int propertyMapRowId = this.
PropertyMapTable
.FindPropertyMapRowIdFor(typeDef);
910
firstPropertyRowId = this.
PropertyMapTable
.GetPropertyListStartFor(propertyMapRowId);
911
if (propertyMapRowId == this.
PropertyMapTable
.NumberOfRows)
917
lastPropertyRowId = this.
PropertyMapTable
.GetPropertyListStartFor(propertyMapRowId + 1) - 1;
1370
return
PropertyMapTable
.FindTypeContainingProperty(propertyDef.RowId, PropertyTable.NumberOfRows);