Skip to content

Commit ab19870

Browse files
committed
Update version
1 parent 365e7b3 commit ab19870

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

sources/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Product>RequestR</Product>
55
<Copyright>Copyright © 2021-2025 Dust in the Wind</Copyright>
66

7-
<Version>2.1.1</Version>
7+
<Version>2.2.0</Version>
88
<Authors>Alexandru Iuga</Authors>
99
<Company>Dust in the Wind</Company>
1010

sources/RequestR/RequestBus.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)