SkipPreconditionAttribute Type
Skip a specific OverridablePreCondition<'T> precondition type for this route case.
PreCondition<'T> (strict preconditions) are NOT affected - they always run.
Can be applied multiple times to skip multiple precondition types.
Example
type AdminRoute =
| Dashboard // requires all
| [<SkipPrecondition(typeof<AdminId>)>] Profile // skips OverridablePreCondition<AdminId> only
type AdminRoute =
| Dashboard
| Profile
val typeof<'T> : System.Type
Constructors
| Constructor |
Description
|
Full Usage:
SkipPreconditionAttribute(preconditionType)
Parameters:
Type
Returns: SkipPreconditionAttribute
|
|
Instance members
| Instance member |
Description
|
|
Gets the inner type of the
|
Falco.UnionRoutes