docs: complete XML doc coverage (returns, summaries, inheritdoc)

Resolve all 622 issues flagged by the enhanced CommentChecker: add missing
<returns> tags (incl. the standard phrasing on non-generic Task methods),
add missing <summary> tags, and replace misused/redundant <inheritdoc/> on
members that override or implement nothing with real documentation.
Documentation-only — no behavior change; solution builds clean.
This commit is contained in:
Joseph Doherty
2026-06-03 11:39:32 -04:00
parent a050170414
commit eabf270d71
208 changed files with 867 additions and 114 deletions
@@ -28,16 +28,19 @@ public record DeliveryOutcome(DeliveryResult Result, string? ResolvedTargets, st
{
/// <summary>Creates a successful outcome carrying the resolved delivery targets.</summary>
/// <param name="resolvedTargets">The concrete delivery targets used, for audit.</param>
/// <returns>A <see cref="DeliveryOutcome"/> with <see cref="DeliveryResult.Success"/> and the resolved targets set.</returns>
public static DeliveryOutcome Success(string resolvedTargets) =>
new(DeliveryResult.Success, resolvedTargets, null);
/// <summary>Creates a transient-failure outcome carrying an error description.</summary>
/// <param name="error">Human-readable description of the transient failure.</param>
/// <returns>A <see cref="DeliveryOutcome"/> with <see cref="DeliveryResult.TransientFailure"/> and the error set.</returns>
public static DeliveryOutcome Transient(string error) =>
new(DeliveryResult.TransientFailure, null, error);
/// <summary>Creates a permanent-failure outcome carrying an error description.</summary>
/// <param name="error">Human-readable description of the permanent failure.</param>
/// <returns>A <see cref="DeliveryOutcome"/> with <see cref="DeliveryResult.PermanentFailure"/> and the error set.</returns>
public static DeliveryOutcome Permanent(string error) =>
new(DeliveryResult.PermanentFailure, null, error);
}
@@ -31,6 +31,7 @@ public static class ServiceCollectionExtensions
/// the singleton actor.
/// </summary>
/// <param name="services">The DI service collection to register notification outbox services into.</param>
/// <returns>The same <paramref name="services"/> instance for chaining.</returns>
public static IServiceCollection AddNotificationOutbox(this IServiceCollection services)
{
ArgumentNullException.ThrowIfNull(services);