@@ -126,7 +126,7 @@ public TResponse Send<TRequest, TResponse>(TRequest request)
126126 /// <typeparam name="TResponse">The type of the response object that is returned to the caller.</typeparam>
127127 /// <param name="request">The request object for which to execute the use case.</param>
128128 /// <returns>The response object that is returned to the caller.</returns>
129- [ Obsolete ( "Use the Send method instead." ) ) ]
129+ [ Obsolete ( "Use the Send method instead." ) ]
130130 public TResponse Process < TRequest , TResponse > ( TRequest request )
131131 {
132132 if ( request == null ) throw new ArgumentNullException ( nameof ( request ) ) ;
@@ -197,7 +197,7 @@ public void Send<TRequest>(TRequest request)
197197 /// </summary>
198198 /// <typeparam name="TRequest">The type of the request object for which to execute the use case.</typeparam>
199199 /// <param name="request">The request object for which to execute the use case.</param>
200- [ Obsolete ( "Use the Send method instead." ) ) ]
200+ [ Obsolete ( "Use the Send method instead." ) ]
201201 public void Process < TRequest > ( TRequest request )
202202 {
203203 if ( request == null ) throw new ArgumentNullException ( nameof ( request ) ) ;
@@ -271,7 +271,7 @@ public Task<TResponse> SendAsync<TRequest, TResponse>(TRequest request)
271271 /// The <see cref="Task"/> object representing the asynchronous execution.
272272 /// At the end of the execution, the <see cref="Task{T}.Result"/> will contain the response object of the use case.
273273 /// </returns>
274- [ Obsolete ( "Use the Send method instead." ) ) ]
274+ [ Obsolete ( "Use the Send method instead." ) ]
275275 public Task < TResponse > ProcessAsync < TRequest , TResponse > ( TRequest request )
276276 {
277277 return SendAsync < TRequest , TResponse > ( request , CancellationToken . None ) ;
@@ -304,7 +304,7 @@ public Task<TResponse> SendAsync<TRequest, TResponse>(TRequest request, Cancella
304304 /// The <see cref="Task"/> object representing the asynchronous execution.
305305 /// At the end of the execution, the <see cref="Task{T}.Result"/> will contain the response object of the use case.
306306 /// </returns>
307- [ Obsolete ( "Use the Send method instead." ) ) ]
307+ [ Obsolete ( "Use the Send method instead." ) ]
308308 public async Task < TResponse > ProcessAsync < TRequest , TResponse > ( TRequest request , CancellationToken cancellationToken )
309309 {
310310 if ( request == null ) throw new ArgumentNullException ( nameof ( request ) ) ;
@@ -373,7 +373,7 @@ public Task SendAsync<TRequest>(TRequest request)
373373 /// <typeparam name="TRequest">The type of the request object for which to execute the use case.</typeparam>
374374 /// <param name="request">The request object for which to execute the use case.</param>
375375 /// <returns>The <see cref="Task"/> object representing the asynchronous execution.</returns>
376- [ Obsolete ( "Use the Send method instead." ) ) ]
376+ [ Obsolete ( "Use the Send method instead." ) ]
377377 public Task ProcessAsync < TRequest > ( TRequest request )
378378 {
379379 return SendAsync ( request , CancellationToken . None ) ;
@@ -398,7 +398,7 @@ public Task SendAsync<TRequest>(TRequest request, CancellationToken cancellation
398398 /// <typeparam name="TRequest">The type of the request object for which to execute the use case.</typeparam>
399399 /// <param name="request">The request object for which to execute the use case.</param>
400400 /// <returns>The <see cref="Task"/> object representing the asynchronous execution.</returns>
401- [ Obsolete ( "Use the Send method instead." ) ) ]
401+ [ Obsolete ( "Use the Send method instead." ) ]
402402 public async Task ProcessAsync < TRequest > ( TRequest request , CancellationToken cancellationToken )
403403 {
404404 if ( request == null ) throw new ArgumentNullException ( nameof ( request ) ) ;
0 commit comments