2 instantiations of NamedArgumentHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
676handle = new NamedArgumentHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7445return new NamedArgumentHandle(this);
14 references to NamedArgumentHandle
System.Private.CoreLib (14)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
672public static uint Read(this NativeReader reader, uint offset, out NamedArgumentHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
3794private readonly NamedArgumentHandle _handle; 3796internal NamedArgument(MetadataReader reader, NamedArgumentHandle handle) 3808public NamedArgumentHandle Handle => _handle; 3846if (obj is NamedArgumentHandle) 3847return _value == ((NamedArgumentHandle)obj)._value; 3854public bool Equals(NamedArgumentHandle handle) => _value == handle._value; 3860public static implicit operator Handle(NamedArgumentHandle handle) 5525private NamedArgumentHandle _current; 5531_current = default(NamedArgumentHandle); 5534public NamedArgumentHandle Current 7443public NamedArgumentHandle ToNamedArgumentHandle(MetadataReader reader) 7833public NamedArgument GetNamedArgument(NamedArgumentHandle handle)
System\Reflection\Runtime\CustomAttributes\NativeFormat\NativeFormatCustomAttributeData.cs (1)
159foreach (NamedArgumentHandle namedArgumentHandle in _customAttribute.NamedArguments)