mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
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,
|
|||
|
}
|
|||
|
}
|