|
13 | 13 | // limitations under the License.
|
14 | 14 |
|
15 | 15 | using System;
|
| 16 | +using System.Threading.Tasks; |
16 | 17 |
|
17 | 18 | namespace OnixLabs.Core;
|
18 | 19 |
|
@@ -60,6 +61,28 @@ public static Result Of(Action action)
|
60 | 61 | }
|
61 | 62 | }
|
62 | 63 |
|
| 64 | + /// <summary> |
| 65 | + /// Creates a new instance of the <see cref="Result"/> class, where the underlying value is the result of a successful invocation |
| 66 | + /// of the specified function; otherwise, the underlying value is the exception thrown by a failed invocation of the specified function. |
| 67 | + /// </summary> |
| 68 | + /// <param name="func">The function to invoke to obtain a successful or failed result.</param> |
| 69 | + /// <returns> |
| 70 | + /// Returns a new instance of the <see cref="Result"/> class, where the underlying value is the result of a successful invocation |
| 71 | + /// of the specified function; otherwise, the underlying value is the exception thrown by a failed invocation of the specified function. |
| 72 | + /// </returns> |
| 73 | + public static async Task<Result> OfAsync(Func<Task> func) |
| 74 | + { |
| 75 | + try |
| 76 | + { |
| 77 | + await func(); |
| 78 | + return Success(); |
| 79 | + } |
| 80 | + catch (Exception exception) |
| 81 | + { |
| 82 | + return exception; |
| 83 | + } |
| 84 | + } |
| 85 | + |
63 | 86 | /// <summary>
|
64 | 87 | /// Creates a new instance of the <see cref="Result"/> class, where the underlying value represents a successful result.
|
65 | 88 | /// </summary>
|
@@ -231,6 +254,27 @@ public static Result<T> Of(Func<T> func)
|
231 | 254 | }
|
232 | 255 | }
|
233 | 256 |
|
| 257 | + /// <summary> |
| 258 | + /// Creates a new instance of the <see cref="Result{T}"/> class, where the underlying value is the result of a successful invocation |
| 259 | + /// of the specified function; otherwise, the underlying value is the exception thrown by a failed invocation of the specified function. |
| 260 | + /// </summary> |
| 261 | + /// <param name="func">The function to invoke to obtain a successful or failed result.</param> |
| 262 | + /// <returns> |
| 263 | + /// Returns a new instance of the <see cref="Result{T}"/> class, where the underlying value is the result of a successful invocation |
| 264 | + /// of the specified function; otherwise, the underlying value is the exception thrown by a failed invocation of the specified function. |
| 265 | + /// </returns> |
| 266 | + public static async Task<Result<T>> OfAsync(Func<Task<T>> func) |
| 267 | + { |
| 268 | + try |
| 269 | + { |
| 270 | + return await func(); |
| 271 | + } |
| 272 | + catch (Exception exception) |
| 273 | + { |
| 274 | + return exception; |
| 275 | + } |
| 276 | + } |
| 277 | + |
234 | 278 | /// <summary>
|
235 | 279 | /// Creates a new instance of the <see cref="Result{T}"/> class, where the underlying value represents a successful result.
|
236 | 280 | /// </summary>
|
|
0 commit comments