Operation |
Public
Fail (value: T,
reason: string?,
) : Result<T>
|
Details:
Notes:
|
The result failed<br/><br/>@param ="result" value<br/>@returns new result struct<br/>
|
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
Ok (result: T,
) : Result<T>
|
Details:
Notes:
|
The result is ok<br/><br/>@returns new result struct<br/>
|
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|
Public
Skip (result: T,
) : Result<T>
|
Details:
Notes:
|
The result was ok, but no action was performed<br/><br/>@returns new result struct<br/>
|
[ Is static True. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
|