aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/WebSocketState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Net/WebSocketState.cs')
-rw-r--r--MediaBrowser.Common/Net/WebSocketState.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/WebSocketState.cs b/MediaBrowser.Common/Net/WebSocketState.cs
new file mode 100644
index 000000000..7f8ac3cbe
--- /dev/null
+++ b/MediaBrowser.Common/Net/WebSocketState.cs
@@ -0,0 +1,38 @@
+
+namespace MediaBrowser.Common.Net
+{
+ /// <summary>
+ /// Enum WebSocketState
+ /// </summary>
+ public enum WebSocketState
+ {
+ /// <summary>
+ /// The none
+ /// </summary>
+ None,
+ /// <summary>
+ /// The connecting
+ /// </summary>
+ Connecting,
+ /// <summary>
+ /// The open
+ /// </summary>
+ Open,
+ /// <summary>
+ /// The close sent
+ /// </summary>
+ CloseSent,
+ /// <summary>
+ /// The close received
+ /// </summary>
+ CloseReceived,
+ /// <summary>
+ /// The closed
+ /// </summary>
+ Closed,
+ /// <summary>
+ /// The aborted
+ /// </summary>
+ Aborted
+ }
+}