6 overrides of GetDestination
Microsoft.AspNetCore.Routing (6)
Matching\DictionaryJumpTable.cs (1)
29public override int GetDestination(string path, PathSegment segment)
Matching\ILEmitTrieJumpTable.cs (1)
50public override int GetDestination(string path, PathSegment segment)
Matching\LinearSearchJumpTable.cs (1)
25public override int GetDestination(string path, PathSegment segment)
Matching\SingleEntryAsciiJumpTable.cs (1)
30public override int GetDestination(string path, PathSegment segment)
Matching\SingleEntryJumpTable.cs (1)
25public override int GetDestination(string path, PathSegment segment)
Matching\ZeroEntryJumpTable.cs (1)
17public override int GetDestination(string path, PathSegment segment)
3 references to GetDestination
Microsoft.AspNetCore.Routing (3)
Matching\DfaMatcher.cs (1)
220destination = states[destination].PathTransitions.GetDestination(path, segments[i]);
Matching\ILEmitTrieJumpTable.cs (2)
67return _fallback.GetDestination(path, segment); 91result = _fallback.GetDestination(path, segment);