Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RouteDirection.cs « src « Routing.Abstractions « Http « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc98d09d6bb1c47a522d421be56d3cc6343a12b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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,
    }
}