mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 14:33:06 +03: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,
|
|||
|
|
}
|
|||
|
|
}
|