8 overrides of ComputeDeclaringType
System.Reflection.MetadataLoadContext (8)
System\Reflection\TypeLoading\Types\Ecma\EcmaDefinitionType.cs (1)
32
protected sealed override RoType?
ComputeDeclaringType
()
System\Reflection\TypeLoading\Types\Ecma\EcmaGenericParameterType.cs (1)
68
protected abstract override RoType?
ComputeDeclaringType
();
System\Reflection\TypeLoading\Types\RoConstructedGenericType.cs (1)
104
protected sealed override RoType?
ComputeDeclaringType
() => _genericTypeDefinition.GetRoDeclaringType();
System\Reflection\TypeLoading\Types\RoExceptionType.cs (1)
33
protected sealed override RoType
ComputeDeclaringType
() => throw null!;
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
173
protected sealed override RoType?
ComputeDeclaringType
() => null;
System\Reflection\TypeLoading\Types\RoHasElementType.cs (1)
52
protected sealed override RoType?
ComputeDeclaringType
() => null;
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
151
protected override RoType?
ComputeDeclaringType
() => throw new NotSupportedException(SR.NotSupported_ModifiedType);
System\Reflection\TypeLoading\Types\RoStubType.cs (1)
46
protected sealed override RoType
ComputeDeclaringType
() => throw null!;
2 references to ComputeDeclaringType
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Types\RoType.cs (2)
141
internal RoType? GetRoDeclaringType() => _lazyDeclaringType ??=
ComputeDeclaringType
();
142
internal RoType? Call_ComputeDeclaringType() =>
ComputeDeclaringType
();