jellyfin/MediaBrowser.Common/Net/WebSocketMessageType.cs
2013-02-24 19:13:45 -05:00

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,
}
}