1 instantiation of ConstructorParameter
Microsoft.AspNetCore.Mvc.Abstractions (1)
src\Shared\ParameterBindingMethodCache.cs (1)
350parametersWithPropertyInfo[i] = new ConstructorParameter(parameters[i], property);
5 references to ConstructorParameter
Microsoft.AspNetCore.Mvc.Abstractions (5)
src\Shared\ParameterBindingMethodCache.cs (5)
48private readonly ConcurrentDictionary<Type, (ConstructorInfo?, ConstructorParameter[])> _constructorCache = new(); 313public (ConstructorInfo?, ConstructorParameter[]) FindConstructor(Type type) 315static (ConstructorInfo? constructor, ConstructorParameter[] parameters) Finder(Type type) 321return (constructor, Array.Empty<ConstructorParameter>()); 339var parametersWithPropertyInfo = new ConstructorParameter[parameters.Length];