aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/WebSocketState.cs
blob: 7f8ac3cbe0015dc13f2747218edc03670aeb1688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
    }
}