2 instantiations of ParameterHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
703handle = new ParameterHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7460return new ParameterHandle(this);
16 references to ParameterHandle
System.Private.CoreLib (16)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
699public static uint Read(this NativeReader reader, uint offset, out ParameterHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
4070private readonly ParameterHandle _handle; 4072internal Parameter(MetadataReader reader, ParameterHandle handle) 4085public ParameterHandle Handle => _handle; 4125if (obj is ParameterHandle) 4126return _value == ((ParameterHandle)obj)._value; 4133public bool Equals(ParameterHandle handle) => _value == handle._value; 4139public static implicit operator Handle(ParameterHandle handle) 5732private ParameterHandle _current; 5738_current = default(ParameterHandle); 5741public ParameterHandle Current 7458public ParameterHandle ToParameterHandle(MetadataReader reader) 7848public Parameter GetParameter(ParameterHandle handle)
System\Reflection\Runtime\General\Dispensers.NativeFormat.cs (1)
166internal static NativeFormatMethodParameterInfo GetNativeFormatMethodParameterInfo(MethodBase member, int position, ParameterHandle parameterHandle, QSignatureTypeHandle qualifiedParameterType, TypeContext typeContext)
System\Reflection\Runtime\MethodInfos\NativeFormat\NativeFormatMethodCommon.cs (1)
61foreach (ParameterHandle parameterHandle in _method.Parameters)
System\Reflection\Runtime\ParameterInfos\NativeFormat\NativeFormatMethodParameterInfo.cs (1)
23private NativeFormatMethodParameterInfo(MethodBase member, int position, ParameterHandle parameterHandle, QSignatureTypeHandle qualifiedParameterTypeHandle, TypeContext typeContext)