diff --git a/src/SignalR/clients/csharp/Client.Core/src/HubConnection.cs b/src/SignalR/clients/csharp/Client.Core/src/HubConnection.cs index 22ecabd33825..1d298f5d63fe 100644 --- a/src/SignalR/clients/csharp/Client.Core/src/HubConnection.cs +++ b/src/SignalR/clients/csharp/Client.Core/src/HubConnection.cs @@ -97,6 +97,8 @@ public partial class HubConnection : IAsyncDisposable /// If this event was triggered from a connection error, the that occurred will be passed in as the /// sole argument to this handler. If this event was triggered intentionally by either the client or server, then /// the argument will be . + /// + /// The result does not block operations. /// /// /// The following example attaches a handler to the event, and checks the provided argument to determine @@ -123,6 +125,8 @@ public partial class HubConnection : IAsyncDisposable /// /// /// The that occurred will be passed in as the sole argument to this handler. + /// + /// The result does not block operations. /// /// /// The following example attaches a handler to the event, and checks the provided argument to log the error. @@ -141,6 +145,8 @@ public partial class HubConnection : IAsyncDisposable /// /// /// The parameter will be the 's new ConnectionId or null if negotiation was skipped. + /// + /// The result does not block operations. /// /// /// The following example attaches a handler to the event, and checks the provided argument to log the ConnectionId.