2 instantiations of ConstantEnumValueHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
370
handle = new
ConstantEnumValueHandle
((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7275
return new
ConstantEnumValueHandle
(this);
11 references to ConstantEnumValueHandle
System.Private.CoreLib (11)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
366
public static uint Read(this NativeReader reader, uint offset, out
ConstantEnumValueHandle
handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
928
private readonly
ConstantEnumValueHandle
_handle;
930
internal ConstantEnumValue(MetadataReader reader,
ConstantEnumValueHandle
handle)
940
public
ConstantEnumValueHandle
Handle => _handle;
970
if (obj is
ConstantEnumValueHandle
)
971
return _value == ((
ConstantEnumValueHandle
)obj)._value;
978
public bool Equals(
ConstantEnumValueHandle
handle) => _value == handle._value;
984
public static implicit operator Handle(
ConstantEnumValueHandle
handle)
7273
public
ConstantEnumValueHandle
ToConstantEnumValueHandle(MetadataReader reader)
7663
public ConstantEnumValue GetConstantEnumValue(
ConstantEnumValueHandle
handle)
System\Reflection\Runtime\General\MetadataReaderExtensions.NativeFormat.cs (1)
145
private static Exception ParseEnumConstantValue(this
ConstantEnumValueHandle
handle, MetadataReader reader, out object value)