Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Patterns/CommandHandler/Contracts.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Odin.Patterns.CommandHandler;
namespace Odin.Patterns;

/// <summary>
/// Defines a command request that doesn't return a value
Expand All @@ -20,7 +20,7 @@
public interface ICommandHandler<in TCommand>
where TCommand : ICommand
{
Task HandleAsync(TCommand command, CancellationToken ct = default);

Check failure on line 23 in Patterns/CommandHandler/Contracts.cs

View workflow job for this annotation

GitHub Actions / publish

Missing XML comment for publicly visible type or member 'ICommandHandler<TCommand>.HandleAsync(TCommand, CancellationToken)'

Check failure on line 23 in Patterns/CommandHandler/Contracts.cs

View workflow job for this annotation

GitHub Actions / publish

Missing XML comment for publicly visible type or member 'ICommandHandler<TCommand>.HandleAsync(TCommand, CancellationToken)'

Check failure on line 23 in Patterns/CommandHandler/Contracts.cs

View workflow job for this annotation

GitHub Actions / publish

Missing XML comment for publicly visible type or member 'ICommandHandler<TCommand>.HandleAsync(TCommand, CancellationToken)'
}

/// <summary>
Expand All @@ -31,4 +31,4 @@
public interface ICommandHandler<in TCommand, TResult>
where TCommand : ICommand<TResult>
{
Task<TResult> HandleAsync(TCommand command, CancellationToken ct = default);

Check failure on line 34 in Patterns/CommandHandler/Contracts.cs

View workflow job for this annotation

GitHub Actions / publish

Missing XML comment for publicly visible type or member 'ICommandHandler<TCommand, TResult>.HandleAsync(TCommand, CancellationToken)'

Check failure on line 34 in Patterns/CommandHandler/Contracts.cs

View workflow job for this annotation

GitHub Actions / publish

Missing XML comment for publicly visible type or member 'ICommandHandler<TCommand, TResult>.HandleAsync(TCommand, CancellationToken)'

Check failure on line 34 in Patterns/CommandHandler/Contracts.cs

View workflow job for this annotation

GitHub Actions / publish

Missing XML comment for publicly visible type or member 'ICommandHandler<TCommand, TResult>.HandleAsync(TCommand, CancellationToken)'
Expand Down
Loading