Table of Contents

Interface IHttpRouteInfoProvider

Namespace
System.Web.Http.Routing
Assembly
System.Web.Http.dll

Provides information for defining a route.

public interface IHttpRouteInfoProvider

Properties

Name

Gets the name of the route to generate.

string Name { get; }

Property Value

string

Order

Gets the order of the route relative to other routes.

int Order { get; }

Property Value

int

Template

Gets the route template describing the URI pattern to match against.

string Template { get; }

Property Value

string