Binding Module
Functions and values
| Function or value | Description |
Full Usage:
bind fBind fCont fErr
Parameters:
HttpContext -> Choice<'a, 'b>
fCont : 'a -> HttpContext -> 'c
fErr : 'b -> HttpContext -> 'c
Returns: HttpContext -> 'c
|
|
Full Usage:
bindReq f fCont fErr
Parameters:
HttpRequest -> Choice<'a, 'b>
fCont : 'a -> HttpContext -> 'c
fErr : 'b -> HttpContext -> 'c
Returns: HttpContext -> 'c
|
|
Full Usage:
form formKey f req
Parameters:
string
f : string -> Choice<'a, string>
req : HttpRequest
Returns: Choice<'a, string>
|
|
Full Usage:
header key f req
Parameters:
string
f : string -> Choice<'a, string>
req : HttpRequest
Returns: Choice<'a, string>
|
|
Full Usage:
query queryKey f req
Parameters:
string
f : string -> Choice<'a, string>
req : HttpRequest
Returns: Choice<'a, string>
|
|