8 overrides of ComputeNamespace
System.Reflection.MetadataLoadContext (8)
System\Reflection\TypeLoading\Types\Ecma\EcmaDefinitionType.cs (1)
42protected sealed override string? ComputeNamespace()
System\Reflection\TypeLoading\Types\RoConstructedGenericType.cs (1)
64protected sealed override string? ComputeNamespace() => _genericTypeDefinition.Namespace;
System\Reflection\TypeLoading\Types\RoExceptionType.cs (1)
31protected sealed override string ComputeNamespace() => throw null!;
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
99protected sealed override string? ComputeNamespace() => null;
System\Reflection\TypeLoading\Types\RoGenericParameterType.cs (1)
34protected sealed override string? ComputeNamespace() => DeclaringType!.Namespace;
System\Reflection\TypeLoading\Types\RoHasElementType.cs (1)
40protected sealed override string? ComputeNamespace() => _elementType.Namespace;
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
144protected override string? ComputeNamespace() => _unmodifiedType.Call_ComputeNamespace();
System\Reflection\TypeLoading\Types\RoStubType.cs (1)
37protected sealed override string ComputeNamespace() => throw null!;
2 references to ComputeNamespace
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Types\RoType.cs (2)
113public sealed override string? Namespace => _lazyNamespace ??= ComputeNamespace(); 115internal string? Call_ComputeNamespace() => ComputeNamespace();