Skip to content

Commit

Permalink
Update dynamically access members annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryptoc1 committed Sep 5, 2024
1 parent cb77324 commit 0ea1625
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OperationInvoker/Abstractions/IOperationHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace ESCd.Extensions.OperationInvoker.Abstractions;

/// <summary> Describes a type that handles an operation of type <typeparamref name="TOperation"/>. </summary>
/// <typeparam name="TOperation"> The type of <see cref="IOperation"/> handled. </typeparam>
[DynamicallyAccessedMembers( DynamicallyAccessedMemberTypes.PublicMethods )]
[DynamicallyAccessedMembers( DynamicallyAccessedMemberTypes.PublicConstructors | DynamicallyAccessedMemberTypes.PublicMethods )]
public interface IOperationHandler<TOperation>
where TOperation : IOperation
{
Expand All @@ -17,7 +17,7 @@ public interface IOperationHandler<TOperation>
/// <summary> Describes a type that handles an operation of type <typeparamref name="TOperation"/>, that returns a result of type <typeparamref name="TResult"/>. </summary>
/// <typeparam name="TOperation"> The type of <see cref="IOperation{TResult}"/> handled. </typeparam>
/// <typeparam name="TResult"> The type of the result of invoking the handler. </typeparam>
[DynamicallyAccessedMembers( DynamicallyAccessedMemberTypes.PublicMethods )]
[DynamicallyAccessedMembers( DynamicallyAccessedMemberTypes.PublicConstructors | DynamicallyAccessedMemberTypes.PublicMethods )]
public interface IOperationHandler<TOperation, TResult>
where TOperation : IOperation<TResult>
{
Expand Down

0 comments on commit 0ea1625

Please sign in to comment.