Class RouteEntry
Represents a named route.
public class RouteEntry
- Inheritance
-
RouteEntry
- Inherited Members
Constructors
RouteEntry(string, IHttpRoute)
Initializes a new instance of the RouteEntry class.
public RouteEntry(string name, IHttpRoute route)
Parameters
namestringThe route name, if any; otherwise, null.
routeIHttpRouteThe route.
Properties
Name
Gets the route name, if any; otherwise, null.
public string Name { get; }
Property Value
- string
The route name, if any; otherwise, null.
Route
Gets the route.
public IHttpRoute Route { get; }
Property Value
- IHttpRoute
The route.