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