// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNetCore.Routing.Tree { /// /// A tree part of a . /// public class UrlMatchingTree { /// /// Initializes a new instance of . /// /// The order associated with routes in this . public UrlMatchingTree(int order) { Order = order; } /// /// Gets the order of the routes associated with this . /// public int Order { get; } /// /// Gets the root of the . /// public UrlMatchingNode Root { get; } = new UrlMatchingNode(length: 0); } }