2 instantiations of ConstantUInt32ValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
532handle = new ConstantUInt32ValueHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7365return new ConstantUInt32ValueHandle(this);
10 references to ConstantUInt32ValueHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
528public static uint Read(this NativeReader reader, uint offset, out ConstantUInt32ValueHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
2371private readonly ConstantUInt32ValueHandle _handle; 2373internal ConstantUInt32Value(MetadataReader reader, ConstantUInt32ValueHandle handle) 2382public ConstantUInt32ValueHandle Handle => _handle; 2409if (obj is ConstantUInt32ValueHandle) 2410return _value == ((ConstantUInt32ValueHandle)obj)._value; 2417public bool Equals(ConstantUInt32ValueHandle handle) => _value == handle._value; 2423public static implicit operator Handle(ConstantUInt32ValueHandle handle) 7363public ConstantUInt32ValueHandle ToConstantUInt32ValueHandle(MetadataReader reader) 7753public ConstantUInt32Value GetConstantUInt32Value(ConstantUInt32ValueHandle handle)