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