Skip to content

Commit 047e5e6

Browse files
Merge branch 'refs/heads/main' into release
# Conflicts: # OnixLabs.Core/OnixLabs.Core.csproj # OnixLabs.Numerics/OnixLabs.Numerics.csproj # OnixLabs.Security.Cryptography/OnixLabs.Security.Cryptography.csproj
2 parents 1a1b02e + 6d3ba1a commit 047e5e6

File tree

4 files changed

+47
-3
lines changed

4 files changed

+47
-3
lines changed

OnixLabs.Core/OnixLabs.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<NeutralLanguage>en</NeutralLanguage>
1212
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1313
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
14-
<PackageVersion>8.2.0</PackageVersion>
14+
<PackageVersion>8.3.0</PackageVersion>
1515
<PackageLicenseUrl></PackageLicenseUrl>
1616
</PropertyGroup>
1717
<PropertyGroup>

OnixLabs.Core/Result.cs

+44
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
using System;
16+
using System.Threading.Tasks;
1617

1718
namespace OnixLabs.Core;
1819

@@ -60,6 +61,28 @@ public static Result Of(Action action)
6061
}
6162
}
6263

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+
6386
/// <summary>
6487
/// Creates a new instance of the <see cref="Result"/> class, where the underlying value represents a successful result.
6588
/// </summary>
@@ -231,6 +254,27 @@ public static Result<T> Of(Func<T> func)
231254
}
232255
}
233256

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+
234278
/// <summary>
235279
/// Creates a new instance of the <see cref="Result{T}"/> class, where the underlying value represents a successful result.
236280
/// </summary>

OnixLabs.Numerics/OnixLabs.Numerics.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.2.0</PackageVersion>
13+
<PackageVersion>8.3.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
<PackageLicenseUrl></PackageLicenseUrl>
1616
</PropertyGroup>

OnixLabs.Security.Cryptography/OnixLabs.Security.Cryptography.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.2.0</PackageVersion>
13+
<PackageVersion>8.3.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
<PackageLicenseUrl></PackageLicenseUrl>
1616
</PropertyGroup>

0 commit comments

Comments
 (0)