1 write to _template
Microsoft.AspNetCore.Routing (1)
Patterns\RoutePatternParser.cs (1)
486
_template
= template;
11 references to _template
Microsoft.AspNetCore.Routing (11)
Patterns\RoutePatternParser.cs (11)
493
get { return (_index <
_template
.Length && _index >= 0) ?
_template
[_index] : (char)0; }
516
return _index >=
_template
.Length;
521
return ++_index <
_template
.Length;
536
var value =
_template
.Substring(_mark.Value, _index - _mark.Value);
550
return
_template
;
554
return
_template
.Substring(0, _mark.Value) +
556
_template
.Substring(_mark.Value, _index - _mark.Value) +
558
_template
.Substring(_index);
562
return string.Concat(
_template
.Substring(0, _index), "|",
_template
.Substring(_index));