// 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.AspNet.Routing { /// /// Indicates whether ASP.NET routing is processing a URL from an HTTP request or generating a URL. /// public enum RouteDirection { /// /// A URL from a client is being processed. /// IncomingRequest, /// /// A URL is being created based on the route definition. /// UrlGeneration, } }