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