You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Vulthil.Results/Extensions/ResultExtensions.Combine.cs
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,21 +6,30 @@ namespace Vulthil.Results;
6
6
publicstaticpartialclassResultExtensions
7
7
{
8
8
/// <summary>
9
-
/// Combines multiple results, returning success when all succeed; otherwise a failure with a <see cref="ValidationError"/> aggregating every failed result's error.
9
+
/// Combines multiple results, returning success when all succeed; a single failure's original error when exactly
10
+
/// one fails; otherwise a failure with a <see cref="ValidationError"/> aggregating every failed result's error.
/// Combines a sequence of results, returning success when all succeed; otherwise a failure with a <see cref="ValidationError"/> aggregating every failed result's error.
15
+
/// Combines a sequence of results, returning success when all succeed; a single failure's original error when
16
+
/// exactly one fails; otherwise a failure with a <see cref="ValidationError"/> aggregating every failed result's error.
/// Asynchronously awaits and combines a sequence of result tasks, returning success when all succeed; otherwise a failure with a <see cref="ValidationError"/> aggregating every failed result's error.
30
+
/// Asynchronously awaits and combines a sequence of result tasks, returning success when all succeed; a single
31
+
/// failure's original error when exactly one fails; otherwise a failure with a <see cref="ValidationError"/>
0 commit comments