2 instantiations of ConstantByteValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
316handle = new ConstantByteValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7245return new ConstantByteValueHandle(this);
10 references to ConstantByteValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
312public static uint Read(this NativeReader reader, uint offset, out ConstantByteValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
444private readonly ConstantByteValueHandle _handle; 446internal ConstantByteValue(MetadataReader reader, ConstantByteValueHandle handle) 455public ConstantByteValueHandle Handle => _handle; 482if (obj is ConstantByteValueHandle) 483return _value == ((ConstantByteValueHandle)obj)._value; 490public bool Equals(ConstantByteValueHandle handle) => _value == handle._value; 496public static implicit operator Handle(ConstantByteValueHandle handle) 7243public ConstantByteValueHandle ToConstantByteValueHandle(MetadataReader reader) 7633public ConstantByteValue GetConstantByteValue(ConstantByteValueHandle handle)