1 write to CustomAttributeTable
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
641this.CustomAttributeTable = new CustomAttributeTableReader(rowCounts[(int)TableIndex.CustomAttribute],
15 references to CustomAttributeTable
System.Reflection.Metadata (15)
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
61TableIndex.CustomAttribute => reader.CustomAttributeTable.RowSize, 142TableIndex.CustomAttribute => reader.CustomAttributeTable.Block,
System\Reflection\Metadata\MetadataReader.cs (1)
648totalRequiredSize += this.CustomAttributeTable.Block.Length;
System\Reflection\Metadata\MetadataReader.WinMD.cs (3)
669var parent = CustomAttributeTable.GetParent(handle); 710var attributeCtor = CustomAttributeTable.GetConstructor(attributeHandle); 797var ctor = CustomAttributeTable.GetConstructor(handle);
System\Reflection\Metadata\TypeSystem\CustomAttribute.cs (5)
50return _reader.CustomAttributeTable.GetConstructor(Handle); 64return _reader.CustomAttributeTable.GetParent(Handle); 80return _reader.CustomAttributeTable.GetValue(Handle); 112return _reader.CustomAttributeTable.GetValue(Handle); 149var rawBlob = _reader.CustomAttributeTable.GetValue(Handle);
System\Reflection\Metadata\TypeSystem\HandleCollections.TypeSystem.cs (4)
240_lastRowId = reader.CustomAttributeTable.NumberOfRows; 248reader.CustomAttributeTable.GetAttributeRange(handle, out _firstRowId, out _lastRowId); 299if (_reader.CustomAttributeTable.PtrTable != null) 313_reader.CustomAttributeTable.PtrTable![(_currentRowId & (int)TokenTypeIds.RIDMask) - 1]);