15 references to FromRowId
System.Reflection.Metadata (15)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (1)
1008return MethodDefinitionHandle.FromRowId(_methodDefTable.Count);
System\Reflection\Metadata\Ecma335\MetadataTokens.cs (1)
347return Metadata.MethodDefinitionHandle.FromRowId(ToRowId(rowNumber));
System\Reflection\Metadata\Internal\Tables.cs (2)
394return MethodDefinitionHandle.FromRowId(this.Block.PeekReference(rowOffset + _MethodOffset, _IsMethodTableRowRefSizeSmall)); 1464return MethodDefinitionHandle.FromRowId(this.Block.PeekReference(rowOffset + _MethodOffset, _IsMethodTableRowRefSizeSmall));
System\Reflection\Metadata\MetadataReader.cs (1)
556MethodDefinitionHandle.FromRowId(entryPointRowId),
System\Reflection\Metadata\PortablePdb\Handles.Debug.cs (1)
184return MethodDefinitionHandle.FromRowId(_rowId);
System\Reflection\Metadata\PortablePdb\Tables.Debug.cs (2)
163return MethodDefinitionHandle.FromRowId(Block.PeekReference(rowOffset + MethodOffset, _isMethodRefSmall)); 381return MethodDefinitionHandle.FromRowId(Block.PeekReference(rowOffset + _kickoffMethodOffset, _isMethodRefSizeSmall));
System\Reflection\Metadata\TypeSystem\HandleCollections.TypeSystem.cs (6)
533return MethodDefinitionHandle.FromRowId((int)(_currentRowId & TokenTypeIds.RIDMask)); 1616public MethodDefinitionHandle Getter { get { return MethodDefinitionHandle.FromRowId(_getterRowId); } } 1617public MethodDefinitionHandle Setter { get { return MethodDefinitionHandle.FromRowId(_setterRowId); } } 1637public MethodDefinitionHandle Adder { get { return MethodDefinitionHandle.FromRowId(_adderRowId); } } 1638public MethodDefinitionHandle Remover { get { return MethodDefinitionHandle.FromRowId(_removerRowId); } } 1639public MethodDefinitionHandle Raiser { get { return MethodDefinitionHandle.FromRowId(_raiserRowId); } }
System\Reflection\Metadata\TypeSystem\MethodDefinition.cs (1)
37get { return MethodDefinitionHandle.FromRowId(RowId); }