Method Build
Build(string)
Builds a route with no path parameters from the specified string.
Declaration
public static RouteBuilder Build(string route)
Parameters
| Type |
Name |
Description |
| string |
route |
|
Returns
Build<TParam>(Func<TParam, InterpolatedRouteHandler>, string)
Builds a parameterized route from the specified route function that returns the interpolated route.
Declaration
public static RouteBuilder<TParam> Build<TParam>(Func<TParam, InterpolatedRouteHandler> routeFunc, string routeFuncExpr = "") where TParam : notnull
Parameters
Returns
Type Parameters