23 lines
406 B
C#
23 lines
406 B
C#
|
|
namespace MediaBrowser.Model.Net
|
|
{
|
|
/// <summary>
|
|
/// Enum WebSocketMessageType
|
|
/// </summary>
|
|
public enum WebSocketMessageType
|
|
{
|
|
/// <summary>
|
|
/// The text
|
|
/// </summary>
|
|
Text,
|
|
/// <summary>
|
|
/// The binary
|
|
/// </summary>
|
|
Binary,
|
|
/// <summary>
|
|
/// The close
|
|
/// </summary>
|
|
Close
|
|
}
|
|
}
|