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