1 write to PropertyPtrTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
677this.PropertyPtrTable = new PropertyPtrTableReader(rowCounts[(int)TableIndex.PropertyPtr], GetReferenceSize(rowCounts, TableIndex.Property), metadataTablesMemoryBlock, totalRequiredSize);
7 references to PropertyPtrTable
System.Reflection.Metadata (7)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
71TableIndex.PropertyPtr => reader.PropertyPtrTable.RowSize, 152TableIndex.PropertyPtr => reader.PropertyPtrTable.Block,
System\Reflection\Metadata\MetadataReader.cs (4)
678totalRequiredSize += this.PropertyPtrTable.Block.Length; 838internal bool UsePropertyPtrTable => PropertyPtrTable.NumberOfRows > 0; 913lastPropertyRowId = (this.UsePropertyPtrTable) ? this.PropertyPtrTable.NumberOfRows : this.PropertyTable.NumberOfRows; 1367propertyDef = PropertyPtrTable.GetPropertyFor(propertyDef.RowId);
System\Reflection\Metadata\TypeSystem\HandleCollections.TypeSystem.cs (1)
780return _reader.PropertyPtrTable.GetPropertyFor(_currentRowId & (int)TokenTypeIds.RIDMask);