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)
14 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 (11)
Matching\AcceptsMatcherPolicyTest.cs (1)
307var actual = jumpTable.GetDestination(httpContext);
Matching\ContentEncodingNegotiationMatcherPolicyTest.cs (10)
452var destination = endpoints.GetDestination(httpContext); 470var destination = endpoints.GetDestination(httpContext); 488var destination = endpoints.GetDestination(httpContext); 506var destination = endpoints.GetDestination(httpContext); 524var destination = endpoints.GetDestination(httpContext); 542var destination = endpoints.GetDestination(httpContext); 560var destination = endpoints.GetDestination(httpContext); 578var destination = endpoints.GetDestination(httpContext); 596var destination = endpoints.GetDestination(httpContext); 613var destination = endpoints.GetDestination(httpContext);