1 write to PropertyTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
680this.PropertyTable = new PropertyTableReader(rowCounts[(int)TableIndex.Property], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
8 references to PropertyTable
System.Reflection.Metadata (8)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
72TableIndex.Property => reader.PropertyTable.RowSize, 153TableIndex.Property => reader.PropertyTable.Block,
System\Reflection\Metadata\MetadataReader.cs (2)
681totalRequiredSize += this.PropertyTable.Block.Length; 913lastPropertyRowId = (this.UsePropertyPtrTable) ? this.PropertyPtrTable.NumberOfRows : this.PropertyTable.NumberOfRows;
System\Reflection\Metadata\TypeSystem\HandleCollections.TypeSystem.cs (1)
707_lastRowId = reader.PropertyTable.NumberOfRows;
System\Reflection\Metadata\TypeSystem\PropertyDefinition.cs (3)
35return _reader.PropertyTable.GetName(Handle); 43return _reader.PropertyTable.GetFlags(Handle); 51return _reader.PropertyTable.GetSignature(Handle);