7 references to ResolveTypeDefRefOrSpec
System.Reflection.MetadataLoadContext (7)
System\Reflection\TypeLoading\CustomAttributes\Ecma\EcmaCustomAttributeData.cs (2)
54return declaringTypeHandle.ResolveTypeDefRefOrSpec(_module, default); 75Type declaringType = mr.Parent.ResolveTypeDefRefOrSpec(_module, typeContext);
System\Reflection\TypeLoading\Events\Ecma\EcmaEvent.cs (1)
61protected sealed override Type ComputeEventHandlerType() => EventDefinition.Type.ResolveTypeDefRefOrSpec(_module, TypeContext);
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodBody.cs (1)
68RoType? catchType = catchTypeHandle.IsNil ? null : catchTypeHandle.ResolveTypeDefRefOrSpec(GetEcmaModule(), TypeContext);
System\Reflection\TypeLoading\Types\Ecma\EcmaDefinitionType.cs (2)
57return baseTypeHandle.ResolveTypeDefRefOrSpec(GetEcmaModule(), instantiation.ToTypeContext()); 68yield return ifc.Interface.ResolveTypeDefRefOrSpec(module, typeContext);
System\Reflection\TypeLoading\Types\Ecma\EcmaGenericParameterType.cs (1)
52RoType constraint = h.GetGenericParameterConstraint(reader).Type.ResolveTypeDefRefOrSpec(GetEcmaModule(), typeContext);