23 lines
408 B
C#
23 lines
408 B
C#
|
|
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,
|
|
}
|
|
}
|