| File: RouteDirection.cs | Web Access |
| Project: src\aspnetcore\src\Http\Routing.Abstractions\src\Microsoft.AspNetCore.Routing.Abstractions.csproj (Microsoft.AspNetCore.Routing.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Routing; /// <summary> /// Indicates whether ASP.NET routing is processing a URL from an HTTP request or generating a URL. /// </summary> public enum RouteDirection { /// <summary> /// A URL from a client is being processed. /// </summary> IncomingRequest, /// <summary> /// A URL is being created based on the route definition. /// </summary> UrlGeneration, }