RouteContextExtensions Type
Static members
Static member | Description |
Full Usage:
RouteContextExtensions.getParam (ctx, name)
Parameters:
RouteContext
-
The route context to get the parameter from
name : string
-
The name of the parameter to get
Returns: 'CastedType voption
The parameter value if it exists in the route context and it was succesfully parsed to it's supplied type or None if it doesn't
Modifiers: inline Type parameters: 'CastedType |
|
Full Usage:
RouteContextExtensions.getParamSequence (ctx, name)
Parameters:
RouteContext
-
The route context to get the parameter from
name : string
-
The name of the parameter to get
Returns: 'CastedType seq
The parameter value if it exists in the query parameters and it was succesfully parsed to it's supplied type or None if it doesn't
Modifiers: inline Type parameters: 'CastedType |
This method will attempt to collect as many ocurrences of the parameter as it can find in the query string.
|