2 instantiations of ConstantBooleanValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
298handle = new ConstantBooleanValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7235return new ConstantBooleanValueHandle(this);
10 references to ConstantBooleanValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
294public static uint Read(this NativeReader reader, uint offset, out ConstantBooleanValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
284private readonly ConstantBooleanValueHandle _handle; 286internal ConstantBooleanValue(MetadataReader reader, ConstantBooleanValueHandle handle) 295public ConstantBooleanValueHandle Handle => _handle; 322if (obj is ConstantBooleanValueHandle) 323return _value == ((ConstantBooleanValueHandle)obj)._value; 330public bool Equals(ConstantBooleanValueHandle handle) => _value == handle._value; 336public static implicit operator Handle(ConstantBooleanValueHandle handle) 7233public ConstantBooleanValueHandle ToConstantBooleanValueHandle(MetadataReader reader) 7623public ConstantBooleanValue GetConstantBooleanValue(ConstantBooleanValueHandle handle)