23 references to CloseSent
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (2)
1264if (!_endofMessageReceived && (_webSocket.State == WebSocketState.Open || _webSocket.State == WebSocketState.CloseSent)) 1278_webSocket.State == WebSocketState.CloseSent));
Microsoft.AspNetCore.Http.Connections (1)
Internal\Transports\WebSocketsServerTransport.cs (1)
305ws.State == WebSocketState.CloseSent);
Microsoft.AspNetCore.Http.Connections.Client (1)
Internal\WebSocketsTransport.cs (1)
637ws.State == WebSocketState.CloseSent);
Microsoft.AspNetCore.Owin (4)
WebSockets\OwinWebSocketAdapter.cs (3)
112else if (State == WebSocketState.CloseSent) 141while (State == WebSocketState.CloseSent) 159_state = WebSocketState.CloseSent;
WebSockets\WebSocketAdapter.cs (1)
132case WebSocketState.CloseSent: // No close received, abort so we don't have to drain the pipe.
Microsoft.AspNetCore.TestHost (4)
TestWebSocket.cs (4)
56if (State == WebSocketState.CloseSent) 79_state = WebSocketState.CloseSent; 132else if (_state == WebSocketState.CloseSent) 180if (State == WebSocketState.CloseSent)
System.Net.WebSockets (5)
System\Net\WebSockets\ManagedWebSocket.cs (4)
1457State == WebSocketState.CloseSent || 1465if (State == WebSocketState.CloseSent) 1585else if (state < WebSocketState.CloseSent) 1587_state = WebSocketState.CloseSent;
System\Net\WebSockets\WebSocketStream.cs (1)
98public override bool CanRead => !_disposed && WebSocket.State is WebSocketState.Open or WebSocketState.CloseSent;
System.Net.WebSockets.Client (4)
System\Net\WebSockets\BrowserWebSockets\BrowserWebSocket.cs (4)
45if (st == WebSocketState.Closed || st == WebSocketState.CloseSent) 57st = WebSocketState.CloseSent; 432if (previousState != WebSocketState.Open && previousState != WebSocketState.CloseSent) 6492 => WebSocketState.CloseSent, // 2 (CLOSING)
System.ServiceModel.Http (2)
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (2)
1236if (!_endofMessageReceived && (_webSocket.State == WebSocketState.Open || _webSocket.State == WebSocketState.CloseSent)) 1250_webSocket.State == WebSocketState.CloseSent));