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