1 write to IsCatchAll
System.Web (1)
Routing\ParameterSubsegment.cs (1)
8IsCatchAll = true;
4 references to IsCatchAll
System.Web (4)
Routing\ContentPathSegment.cs (1)
14return Subsegments.Any<PathSubsegment>(seg => (seg is ParameterSubsegment) && (((ParameterSubsegment)seg).IsCatchAll));
Routing\ParsedRoute.cs (1)
394if (parameterSubsegment.IsCatchAll) {
Routing\RouteParser.cs (2)
258foundCatchAllParameter = subsegments.Any<PathSubsegment>(seg => (seg is ParameterSubsegment) && (((ParameterSubsegment)seg).IsCatchAll)); 293if (parameterSubsegment.IsCatchAll) {