File: System\Net\WebSockets\WebSocketState.cs | Web Access |
Project: src\src\libraries\System.Net.WebSockets\src\System.Net.WebSockets.csproj (System.Net.WebSockets) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Net.WebSockets { public enum WebSocketState { None = 0, Connecting = 1, Open = 2, CloseSent = 3, // WebSocket close handshake started form local endpoint CloseReceived = 4, // WebSocket close message received from remote endpoint. Waiting for app to call close Closed = 5, Aborted = 6, } } |