diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-24 19:13:45 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-24 19:13:45 -0500 |
| commit | 28ccfb1bd17eceb683d428d1c0e2d2ea52a2f7ff (patch) | |
| tree | e5dccabace19f632c185781c4501d488c7dc7fae /MediaBrowser.Common/Net/WebSocketState.cs | |
| parent | 5b1eea558a55b9a46e556b795189425441b4a026 (diff) | |
extracted httpclient dependancy
Diffstat (limited to 'MediaBrowser.Common/Net/WebSocketState.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/WebSocketState.cs | 38 |
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 + } +} |
