Class Route
Provides methods for building routes.
Namespace: Singulink.UI.Navigation
Assembly: Singulink.UI.Navigation.dll
Syntax
public static class Route
Methods
Name | Description |
---|---|
Build(string) | Builds a route with no parameters from the specified string. |
Build<T>(Func<T, InterpolatedRouteHandler>, string) | Builds a route with a single parameter from the specified route function that returns the interpolated route. |
Build<T1, T2>(Func<T1, T2, InterpolatedRouteHandler>, string) | Builds a route with two parameters from the specified route function that returns the interpolated route. |
Build<T1, T2, T3>(Func<T1, T2, T3, InterpolatedRouteHandler>, string) | Builds a route with three parameters from the specified route function that returns the interpolated route. |
Build<T1, T2, T3, T4>(Func<T1, T2, T3, T4, InterpolatedRouteHandler>, string) | Builds a route with four parameters from the specified route function that returns the interpolated route. |