Skip to content

Commit 06dc639

Browse files
Merge branch 'refs/heads/main' into release
2 parents d5f67e5 + 7fc743a commit 06dc639

File tree

5 files changed

+54
-8
lines changed

5 files changed

+54
-8
lines changed

OnixLabs.Core/OnixLabs.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<Title>OnixLabs.Core</Title>
88
<Authors>ONIXLabs</Authors>
99
<Description>ONIXLabs Core API for .NET</Description>
10-
<AssemblyVersion>8.9.0</AssemblyVersion>
10+
<AssemblyVersion>8.10.0</AssemblyVersion>
1111
<NeutralLanguage>en</NeutralLanguage>
1212
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1313
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
14-
<PackageVersion>8.9.0</PackageVersion>
14+
<PackageVersion>8.10.0</PackageVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>
1717
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>

OnixLabs.Core/Result.cs

+46
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;
1617
using System.Threading.Tasks;
1718

1819
namespace OnixLabs.Core;
@@ -83,6 +84,29 @@ public static async Task<Result> OfAsync(Func<Task> func)
8384
}
8485
}
8586

87+
/// <summary>
88+
/// Creates a new instance of the <see cref="Result"/> class, where the underlying value is the result of a successful invocation
89+
/// of the specified function; otherwise, the underlying value is the exception thrown by a failed invocation of the specified function.
90+
/// </summary>
91+
/// <param name="func">The function to invoke to obtain a successful or failed result.</param>
92+
/// <param name="token">The cancellation token to pass to the invoked function.</param>
93+
/// <returns>
94+
/// Returns a new instance of the <see cref="Result"/> class, where the underlying value is the result of a successful invocation
95+
/// of the specified function; otherwise, the underlying value is the exception thrown by a failed invocation of the specified function.
96+
/// </returns>
97+
public static async Task<Result> OfAsync(Func<CancellationToken, Task> func, CancellationToken token = default)
98+
{
99+
try
100+
{
101+
await func(token);
102+
return Success();
103+
}
104+
catch (Exception exception)
105+
{
106+
return exception;
107+
}
108+
}
109+
86110
/// <summary>
87111
/// Creates a new instance of the <see cref="Result"/> class, where the underlying value represents a successful result.
88112
/// </summary>
@@ -291,6 +315,28 @@ public static async Task<Result<T>> OfAsync(Func<Task<T>> func)
291315
}
292316
}
293317

318+
/// <summary>
319+
/// Creates a new instance of the <see cref="Result{T}"/> class, where the underlying value is the result of a successful invocation
320+
/// of the specified function; otherwise, the underlying value is the exception thrown by a failed invocation of the specified function.
321+
/// </summary>
322+
/// <param name="func">The function to invoke to obtain a successful or failed result.</param>
323+
/// <param name="token">The cancellation token to pass to the invoked function.</param>
324+
/// <returns>
325+
/// Returns a new instance of the <see cref="Result{T}"/> class, where the underlying value is the result of a successful invocation
326+
/// of the specified function; otherwise, the underlying value is the exception thrown by a failed invocation of the specified function.
327+
/// </returns>
328+
public static async Task<Result<T>> OfAsync(Func<CancellationToken, Task<T>> func, CancellationToken token = default)
329+
{
330+
try
331+
{
332+
return await func(token);
333+
}
334+
catch (Exception exception)
335+
{
336+
return exception;
337+
}
338+
}
339+
294340
/// <summary>
295341
/// Creates a new instance of the <see cref="Result{T}"/> class, where the underlying value represents a successful result.
296342
/// </summary>

OnixLabs.Numerics/OnixLabs.Numerics.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<Title>OnixLabs.Numerics</Title>
55
<Authors>ONIXLabs</Authors>
66
<Description>ONIXLabs Numerics API for .NET</Description>
7-
<AssemblyVersion>8.9.0</AssemblyVersion>
7+
<AssemblyVersion>8.10.0</AssemblyVersion>
88
<NeutralLanguage>en</NeutralLanguage>
99
<Nullable>enable</Nullable>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.9.0</PackageVersion>
13+
<PackageVersion>8.10.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<Title>OnixLabs.Security.Cryptography</Title>
55
<Authors>ONIXLabs</Authors>
66
<Description>ONIXLabs Cryptography API for .NET</Description>
7-
<AssemblyVersion>8.9.0</AssemblyVersion>
7+
<AssemblyVersion>8.10.0</AssemblyVersion>
88
<NeutralLanguage>en</NeutralLanguage>
99
<Nullable>enable</Nullable>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.9.0</PackageVersion>
13+
<PackageVersion>8.10.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>

OnixLabs.Security/OnixLabs.Security.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<Title>OnixLabs.Security</Title>
55
<Authors>ONIXLabs</Authors>
66
<Description>ONIXLabs Security API for .NET</Description>
7-
<AssemblyVersion>8.9.0</AssemblyVersion>
7+
<AssemblyVersion>8.10.0</AssemblyVersion>
88
<NeutralLanguage>en</NeutralLanguage>
99
<Nullable>enable</Nullable>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.9.0</PackageVersion>
13+
<PackageVersion>8.10.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>

0 commit comments

Comments
 (0)