aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/WebSocketMessageType.cs
blob: 3b12bc2b29af56b5994ec35c9f198eef3c82a3d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace MediaBrowser.Common.Net
{
    /// <summary>
    /// Enum WebSocketMessageType
    /// </summary>
    public enum WebSocketMessageType
    {
        /// <summary>
        /// The text
        /// </summary>
        Text,
        /// <summary>
        /// The binary
        /// </summary>
        Binary,
        /// <summary>
        /// The close
        /// </summary>
        Close,
    }
}