1 write to _path
Microsoft.AspNetCore.Routing (1)
PathTokenizer.cs (1)
24_path = path.Value;
12 references to _path
Microsoft.AspNetCore.Routing (12)
PathTokenizer.cs (12)
35if (_path.Length == 0) 43if (_path.Length == 1) 47Debug.Assert(_path[0] == '/'); 58for (var i = 1; i < _path.Length - 1; i++) 60if (_path[i] == '/') 82while ((delimiterIndex = _path.IndexOf('/', delimiterIndex)) != -1) 86return new StringSegment(_path, currentSegmentStart, delimiterIndex - currentSegmentStart); 97Debug.Assert(_path[_path.Length - 1] != '/'); 100return new StringSegment(_path, currentSegmentStart, _path.Length - currentSegmentStart); 128_path = tokenizer._path;