INodeBuilderPolicy.BuildJumpTable Method     
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Constructs a jump table given the a set of edges.
public:
 Microsoft::AspNetCore::Routing::Matching::PolicyJumpTable ^ BuildJumpTable(int exitDestination, System::Collections::Generic::IReadOnlyList<Microsoft::AspNetCore::Routing::Matching::PolicyJumpTableEdge> ^ edges);public Microsoft.AspNetCore.Routing.Matching.PolicyJumpTable BuildJumpTable(int exitDestination, System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Routing.Matching.PolicyJumpTableEdge> edges);abstract member BuildJumpTable : int * System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Routing.Matching.PolicyJumpTableEdge> -> Microsoft.AspNetCore.Routing.Matching.PolicyJumpTablePublic Function BuildJumpTable (exitDestination As Integer, edges As IReadOnlyList(Of PolicyJumpTableEdge)) As PolicyJumpTableParameters
- exitDestination
- Int32
The default destination for lookups.
- edges
- IReadOnlyList<PolicyJumpTableEdge>
A list of PolicyJumpTableEdge.
Returns
A PolicyJumpTable instance.