2 writes to IsCatchAll
Microsoft.AspNetCore.Routing (2)
Template\TemplatePart.cs (2)
41
IsCatchAll
= parameter.IsCatchAll;
94
IsCatchAll
= isCatchAll,
11 references to IsCatchAll
Microsoft.AspNetCore.Routing (9)
Template\RoutePrecedence.cs (2)
164
var digit = part.
IsCatchAll
? 1 : 3;
232
var digit = part.
IsCatchAll
? 5 : 3;
Template\TemplatePart.cs (2)
143
return "{" + (
IsCatchAll
? "*" : string.Empty) + Name + (IsOptional ? "?" : string.Empty) + "}";
167
var kind =
IsCatchAll
?
Tree\UrlMatchingTree.cs (5)
139
if (part.IsParameter && part.InlineConstraints.Any() && !part.
IsCatchAll
)
150
if (part.IsParameter && !part.
IsCatchAll
)
161
if (part.IsParameter && part.InlineConstraints.Any() && part.
IsCatchAll
)
172
if (part.IsParameter && part.
IsCatchAll
)
269
part.
IsCatchAll
||
Microsoft.AspNetCore.Routing.Tests (2)
Template\TemplateParserTests.cs (2)
870
x.
IsCatchAll
!= y.
IsCatchAll
||