2 instantiations of NamespaceReferenceHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
694
handle = new
NamespaceReferenceHandle
((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7455
return new
NamespaceReferenceHandle
(this);
17 references to NamespaceReferenceHandle
System.Private.CoreLib (14)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
690
public static uint Read(this NativeReader reader, uint offset, out
NamespaceReferenceHandle
handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (9)
3985
private readonly
NamespaceReferenceHandle
_handle;
3987
internal NamespaceReference(MetadataReader reader,
NamespaceReferenceHandle
handle)
3997
public
NamespaceReferenceHandle
Handle => _handle;
4028
if (obj is
NamespaceReferenceHandle
)
4029
return _value == ((
NamespaceReferenceHandle
)obj)._value;
4036
public bool Equals(
NamespaceReferenceHandle
handle) => _value == handle._value;
4042
public static implicit operator Handle(
NamespaceReferenceHandle
handle)
7453
public
NamespaceReferenceHandle
ToNamespaceReferenceHandle(MetadataReader reader)
7843
public NamespaceReference GetNamespaceReference(
NamespaceReferenceHandle
handle)
System\Reflection\Runtime\General\MetadataReaderExtensions.NativeFormat.cs (3)
60
public static
NamespaceReferenceHandle
ToExpectedNamespaceReferenceHandle(this Handle handle, MetadataReader reader)
513
NamespaceReferenceHandle
nsHandle = typeReference.ParentNamespaceOrType.ToNamespaceReferenceHandle(reader);
625
public static string ToFullyQualifiedTypeName(this
NamespaceReferenceHandle
namespaceReferenceHandle, string typeName, MetadataReader reader)
System\Reflection\Runtime\General\TypeResolver.NativeFormat.cs (1)
208
NamespaceReferenceHandle
namespaceReferenceHandle = parent.ToNamespaceReferenceHandle(reader);
System.Private.StackTraceMetadata (1)
Internal\StackTraceMetadata\MethodNameFormatter.cs (1)
258
private void EmitNamespaceReferenceName(
NamespaceReferenceHandle
namespaceRefHandle)
System.Private.TypeLoader (2)
Internal\Runtime\TypeLoader\MetadataNameExtensions.cs (1)
242
public static string GetFullName(this
NamespaceReferenceHandle
namespaceHandle, MetadataReader reader)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MetadataTypeHashingAlgorithms.cs (1)
35
private static void AppendNamespaceHashCode(ref HashCodeBuilder builder,
NamespaceReferenceHandle
namespaceRefHandle, MetadataReader reader, bool appendDot)