diff --git a/src/Microsoft.Extensions.WebSockets.Internal/WebSocketConnection.cs b/src/Microsoft.Extensions.WebSockets.Internal/WebSocketConnection.cs index b775d59db2..5e7a96a5f8 100644 --- a/src/Microsoft.Extensions.WebSockets.Internal/WebSocketConnection.cs +++ b/src/Microsoft.Extensions.WebSockets.Internal/WebSocketConnection.cs @@ -17,9 +17,8 @@ namespace Microsoft.Extensions.WebSockets.Internal /// /// /// - /// This type is thread-safe under the following condition: No two threads attempt to call either - /// or simultaneously. Different threads may call each method, but the same method - /// cannot be re-entered while it is being run in a different thread. + /// This type is thread-safe, as long as only one thread ever calls . Multiple threads may call simultaneously + /// and the sends will block until ongoing send operations complete. /// /// /// The general pattern of having a single thread running and a separate thread running will