5 overrides of GetDestination
Microsoft.AspNetCore.Routing (5)
Matching\AcceptsMatcherPolicy.cs (1)
356
public override int
GetDestination
(HttpContext httpContext)
Matching\HostMatcherPolicy.cs (1)
376
public override int
GetDestination
(HttpContext httpContext)
Matching\HttpMethodDictionaryPolicyJumpTable.cs (1)
21
public override int
GetDestination
(HttpContext httpContext)
Matching\HttpMethodSingleEntryPolicyJumpTable.cs (1)
34
public override int
GetDestination
(HttpContext httpContext)
Matching\NegotiationMatcherPolicy.cs (1)
400
public override int
GetDestination
(HttpContext httpContext)
4 references to GetDestination
Microsoft.AspNetCore.Routing (1)
Matching\DfaMatcher.cs (1)
227
destination = policyTransitions.
GetDestination
(httpContext);
Microsoft.AspNetCore.Routing.Microbenchmarks (2)
Matching\HttpMethodPolicyJumpTableBenchmark.cs (2)
57
return _dictionaryJumptable.
GetDestination
(_httpContext);
63
return _singleEntryJumptable.
GetDestination
(_httpContext);
Microsoft.AspNetCore.Routing.Tests (1)
Matching\AcceptsMatcherPolicyTest.cs (1)
307
var actual = jumpTable.
GetDestination
(httpContext);