3 instantiations of ConstructorParameter
Microsoft.AspNetCore.Http.RequestDelegateGenerator (3)
StaticRouteHandlerModel\EndpointParameter.cs (3)
498matchedProperties = writableProperties.Select(property => new ConstructorParameter(property, null)); 507propertiesWithParameterInfo.Add(new ConstructorParameter(property, parameter)); 524matchedProperties = writableProperties.Select(property => new ConstructorParameter(property, null));
2 references to ConstructorParameter
Microsoft.AspNetCore.Http.RequestDelegateGenerator (2)
StaticRouteHandlerModel\EndpointParameter.cs (2)
458private static bool TryGetAsParametersConstructor(Endpoint endpoint, INamedTypeSymbol type, WellKnownTypes wellKnownTypes, out bool? isDefaultConstructor, [NotNullWhen(true)] out IEnumerable<ConstructorParameter>? matchedProperties) 493var propertiesWithParameterInfo = new List<ConstructorParameter>();