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)
493get { return (_index < _template.Length && _index >= 0) ? _template[_index] : (char)0; } 516return _index >= _template.Length; 521return ++_index < _template.Length; 536var value = _template.Substring(_mark.Value, _index - _mark.Value); 550return _template; 554return _template.Substring(0, _mark.Value) + 556_template.Substring(_mark.Value, _index - _mark.Value) + 558_template.Substring(_index); 562return string.Concat(_template.Substring(0, _index), "|", _template.Substring(_index));