jellyfin/MediaBrowser.Common/Net/WebSocketMessageType.cs

23 lines
408 B
C#
Raw Normal View History

2013-02-25 01:13:45 +01:00

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