14 references to Path
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\BindingSource.cs (1)
199return bindingSource == Form || bindingSource == Path || bindingSource == Query;
Microsoft.AspNetCore.Mvc.ApiExplorer (8)
DefaultApiDescriptionProvider.cs (6)
254if (parameter.Source == BindingSource.Path || 268parameter.Source = BindingSource.Path; 273if (parameter.Source == BindingSource.Path && 296Source = BindingSource.Path, 322if (parameter.Source == BindingSource.Path && parameter.RouteInfo != null) 345if (parameter.Source == BindingSource.Path)
EndpointMetadataApiDescriptionProvider.cs (2)
260return (BindingSource.Path, routeAttribute.Name ?? name, false, parameterType); 297return (BindingSource.Path, routeParam.Name, false, displayType);
Microsoft.AspNetCore.Mvc.Core (5)
ApiBehaviorOptions.cs (1)
41/// Parameters that appear as route values, are assumed to be bound from the path (<see cref="BindingSource.Path"/>).
ApplicationModels\InferParameterBindingInfoConvention.cs (2)
22/// <item>Parameter with a name that appears as a route value in ANY route template is assigned <see cref="BindingSource.Path"/>.</item> 128return BindingSource.Path;
FromRouteAttribute.cs (1)
31public BindingSource BindingSource => BindingSource.Path;
ModelBinding\RouteValueProviderFactory.cs (1)
19BindingSource.Path,