17 references to ParentNamespaceOrType
System.Private.CoreLib (3)
System\Reflection\Runtime\General\MetadataReaderExtensions.NativeFormat.cs (2)
511
if (!typeReference.
ParentNamespaceOrType
.IsNamespaceReferenceHandle(reader))
513
NamespaceReferenceHandle nsHandle = typeReference.
ParentNamespaceOrType
.ToNamespaceReferenceHandle(reader);
System\Reflection\Runtime\General\TypeResolver.NativeFormat.cs (1)
175
Handle parent = typeReference.
ParentNamespaceOrType
;
System.Private.StackTraceMetadata (5)
Internal\StackTraceMetadata\MethodNameFormatter.cs (4)
292
if (!typeRef.
ParentNamespaceOrType
.IsNil)
294
if (typeRef.
ParentNamespaceOrType
.HandleType != HandleType.NamespaceReference)
297
EmitTypeName(typeRef.
ParentNamespaceOrType
, flags);
306
EmitNamespaceReferenceName(typeRef.
ParentNamespaceOrType
.ToNamespaceReferenceHandle(_metadataReader));
Internal\StackTraceMetadata\StackTraceMetadata.cs (1)
239
return FormatAssemblyName(reader, typeRef.
ParentNamespaceOrType
);
System.Private.TypeLoader (9)
Internal\Runtime\TypeLoader\MetadataNameExtensions.cs (6)
196
enclosing = typeRef.
ParentNamespaceOrType
.HandleType == HandleType.TypeReference ? typeRef.
ParentNamespaceOrType
.GetFullName(reader) : null;
197
nspace = typeRef.
ParentNamespaceOrType
.HandleType == HandleType.NamespaceReference ? typeRef.
ParentNamespaceOrType
.GetFullName(reader) : null;
219
Handle currentHandle = typeRef.
ParentNamespaceOrType
;
228
currentHandle = typeRef.
ParentNamespaceOrType
;
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MetadataTypeHashingAlgorithms.cs (3)
83
AppendNamespaceHashCode(ref builder, typeRef.
ParentNamespaceOrType
.ToNamespaceReferenceHandle(reader), reader, appendDot: false);
88
if (typeRef.
ParentNamespaceOrType
.HandleType == HandleType.TypeReference)
90
int enclosingTypeHashCode = typeRef.
ParentNamespaceOrType
.ToTypeReferenceHandle(reader).ComputeHashCode(reader);