2 instantiations of ConstantByteArrayHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
307handle = new ConstantByteArrayHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7240return new ConstantByteArrayHandle(this);
10 references to ConstantByteArrayHandle
System.Private.CoreLib (10)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
303public static uint Read(this NativeReader reader, uint offset, out ConstantByteArrayHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
364private readonly ConstantByteArrayHandle _handle; 366internal ConstantByteArray(MetadataReader reader, ConstantByteArrayHandle handle) 375public ConstantByteArrayHandle Handle => _handle; 402if (obj is ConstantByteArrayHandle) 403return _value == ((ConstantByteArrayHandle)obj)._value; 410public bool Equals(ConstantByteArrayHandle handle) => _value == handle._value; 416public static implicit operator Handle(ConstantByteArrayHandle handle) 7238public ConstantByteArrayHandle ToConstantByteArrayHandle(MetadataReader reader) 7628public ConstantByteArray GetConstantByteArray(ConstantByteArrayHandle handle)