17 references to IsCatchAll
Microsoft.AspNetCore.Components (15)
Routing\RouteTable.cs (1)
110else if (parameter.ParameterPolicies.Count > 0 && !parameter.IsCatchAll)
src\Http\Routing\src\Patterns\RoutePatternMatcher.cs (4)
93else if (pathSegment.IsSimple && pathSegment.Parts[0] is RoutePatternParameterPart parameter && parameter.IsCatchAll) 128if (parameter.IsCatchAll) 175if (part is RoutePatternParameterPart parameter && (parameter.IsCatchAll || _hasDefaultValue[i])) 249if (pathSegment.IsSimple && pathSegment.Parts[0] is RoutePatternParameterPart parameter && parameter.IsCatchAll)
src\Http\Routing\src\Patterns\RoutePatternParameterPart.cs (1)
88if (IsCatchAll)
src\Http\Routing\src\Patterns\RoutePatternParser.cs (2)
326&& parameter.IsCatchAll && 344if (part is RoutePatternParameterPart parameter && parameter.IsCatchAll && parts.Count > 1)
src\Http\Routing\src\Template\RoutePrecedence.cs (2)
192var digit = parameterPart.IsCatchAll ? 1 : 3; 272var digit = parameterPart.IsCatchAll ? 5 : 3;
src\Http\Routing\src\Tree\UrlMatchingTree.cs (5)
185if (parameterPart.ParameterPolicies.Count > 0 && !parameterPart.IsCatchAll) 196if (!parameterPart.IsCatchAll) 207if (parameterPart.ParameterPolicies.Count > 0 && parameterPart.IsCatchAll) 218if (parameterPart.IsCatchAll) 274parameterPart.IsCatchAll ||
Microsoft.AspNetCore.Components.Tests (2)
Routing\TemplateParserTests.cs (2)
313xParameterPart.IsCatchAll == yParameterPart.IsCatchAll,