Skip to content

Commit 87f954a

Browse files
committed
Stop using exact words fire-and-forget
1 parent 8d11670 commit 87f954a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SignalR/clients/csharp/Client.Core/src/HubConnection.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public partial class HubConnection : IAsyncDisposable
9898
/// sole argument to this handler. If this event was triggered intentionally by either the client or server, then
9999
/// the argument will be <see langword="null"/>.
100100
///
101-
/// The <see cref="Task"/> result is fire-and-forget: the <see cref="HubConnection"/> does not wait for it to complete.
101+
/// The <see cref="Task"/> result does not block <see cref="HubConnection"/> operations.
102102
/// </remarks>
103103
/// <example>
104104
/// The following example attaches a handler to the <see cref="Closed"/> event, and checks the provided argument to determine
@@ -126,7 +126,7 @@ public partial class HubConnection : IAsyncDisposable
126126
/// <remarks>
127127
/// The <see cref="Exception"/> that occurred will be passed in as the sole argument to this handler.
128128
///
129-
/// The <see cref="Task"/> result is fire-and-forget: the <see cref="HubConnection"/> does not wait for it to complete.
129+
/// The <see cref="Task"/> result does not block <see cref="HubConnection"/> operations.
130130
/// </remarks>
131131
/// <example>
132132
/// The following example attaches a handler to the <see cref="Reconnecting"/> event, and checks the provided argument to log the error.
@@ -146,7 +146,7 @@ public partial class HubConnection : IAsyncDisposable
146146
/// <remarks>
147147
/// The <see cref="string"/> parameter will be the <see cref="HubConnection"/>'s new ConnectionId or null if negotiation was skipped.
148148
///
149-
/// The <see cref="Task"/> result is fire-and-forget: the <see cref="HubConnection"/> does not wait for it to complete.
149+
/// The <see cref="Task"/> result does not block <see cref="HubConnection"/> operations.
150150
/// </remarks>
151151
/// <example>
152152
/// The following example attaches a handler to the <see cref="Reconnected"/> event, and checks the provided argument to log the ConnectionId.

0 commit comments

Comments
 (0)