14 references to Path
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\BindingSource.cs (1)
199
return bindingSource == Form || bindingSource ==
Path
|| bindingSource == Query;
Microsoft.AspNetCore.Mvc.ApiExplorer (8)
DefaultApiDescriptionProvider.cs (6)
254
if (parameter.Source == BindingSource.
Path
||
268
parameter.Source = BindingSource.
Path
;
273
if (parameter.Source == BindingSource.
Path
&&
296
Source = BindingSource.
Path
,
322
if (parameter.Source == BindingSource.
Path
&& parameter.RouteInfo != null)
345
if (parameter.Source == BindingSource.
Path
)
EndpointMetadataApiDescriptionProvider.cs (2)
260
return (BindingSource.
Path
, routeAttribute.Name ?? name, false, parameterType);
297
return (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>
128
return BindingSource.
Path
;
FromRouteAttribute.cs (1)
31
public BindingSource BindingSource => BindingSource.
Path
;
ModelBinding\RouteValueProviderFactory.cs (1)
19
BindingSource.
Path
,