Err(String) |
Creates a result as the Err variant; with the given error information: errorMessage.
C#
|
Err(String, Exception) |
Creates a result as the Err variant; with the given error information: when, exception.
C#
|
Err(String, String) | Creates a result as the Err variant; with the given error information: errorMessage, when. |
Err(String, String, Exception) |
Creates a result as the Err variant; with the given error information: errorMessage, when, exception.
C#
|
ErrT(String) |
Creates a result of T as Err with the given errorMessage.
C#
|
ErrT(String, String) | Creates a result of T as Err with the given errorMessage which is observed during when. |