1 instantiation of ConstructorParameter
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\ParameterBindingMethodCache.cs (1)
350parametersWithPropertyInfo[i] = new ConstructorParameter(parameters[i], property);
6 references to ConstructorParameter
Microsoft.AspNetCore.Http.Extensions (6)
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];
src\Shared\PropertyAsParameterInfo.cs (1)
109foreach (var constructorParameter in constructorParameters)