From f07af448fa11330db93dd7ddcabac37ef9e014c7 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 24 May 2017 15:12:55 -0400 Subject: update main projects --- SocketHttpListener.Portable/WebSocketState.cs | 35 --------------------------- 1 file changed, 35 deletions(-) delete mode 100644 SocketHttpListener.Portable/WebSocketState.cs (limited to 'SocketHttpListener.Portable/WebSocketState.cs') diff --git a/SocketHttpListener.Portable/WebSocketState.cs b/SocketHttpListener.Portable/WebSocketState.cs deleted file mode 100644 index 73b3a49dd..000000000 --- a/SocketHttpListener.Portable/WebSocketState.cs +++ /dev/null @@ -1,35 +0,0 @@ -namespace SocketHttpListener -{ - /// - /// Contains the values of the state of the WebSocket connection. - /// - /// - /// The values of the state are defined in - /// The WebSocket - /// API. - /// - public enum WebSocketState : ushort - { - /// - /// Equivalent to numeric value 0. - /// Indicates that the connection has not yet been established. - /// - Connecting = 0, - /// - /// Equivalent to numeric value 1. - /// Indicates that the connection is established and the communication is possible. - /// - Open = 1, - /// - /// Equivalent to numeric value 2. - /// Indicates that the connection is going through the closing handshake or - /// the WebSocket.Close method has been invoked. - /// - Closing = 2, - /// - /// Equivalent to numeric value 3. - /// Indicates that the connection has been closed or couldn't be opened. - /// - Closed = 3 - } -} -- cgit v1.2.3