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] == '/'); 56_count = _path.AsSpan(0, _path.Length - 1).Count('/'); 74while ((delimiterIndex = _path.IndexOf('/', delimiterIndex)) != -1) 78return new StringSegment(_path, currentSegmentStart, delimiterIndex - currentSegmentStart); 89Debug.Assert(_path[_path.Length - 1] != '/'); 92return new StringSegment(_path, currentSegmentStart, _path.Length - currentSegmentStart); 120_path = tokenizer._path;