9 references to Query
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\BindingSource.cs (1)
199return bindingSource == Form || bindingSource == Path || bindingSource == Query;
Microsoft.AspNetCore.Mvc.ApiExplorer (3)
EndpointMetadataApiDescriptionProvider.cs (3)
264return (BindingSource.Query, queryAttribute.Name ?? parameter.Name ?? string.Empty, false, parameterType); 301return (BindingSource.Query, parameter.Name ?? string.Empty, false, displayType); 313return (BindingSource.Query, parameter.Name ?? string.Empty, false, parameterType);
Microsoft.AspNetCore.Mvc.Core (5)
ApplicationModels\InferParameterBindingInfoConvention.cs (2)
23/// <item>All other parameters are <see cref="BindingSource.Query"/>.</item> 131return BindingSource.Query;
FromQueryAttribute.cs (1)
31public BindingSource BindingSource => BindingSource.Query;
ModelBinding\JQueryQueryStringValueProviderFactory.cs (1)
24BindingSource.Query,
ModelBinding\QueryStringValueProviderFactory.cs (1)
25BindingSource.Query,