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