mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
Moved some web socket classes to the model
This commit is contained in:
38
MediaBrowser.Model/Net/WebSocketState.cs
Normal file
38
MediaBrowser.Model/Net/WebSocketState.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
namespace MediaBrowser.Model.Net
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum WebSocketState
|
||||
/// </summary>
|
||||
public enum WebSocketState
|
||||
{
|
||||
/// <summary>
|
||||
/// The none
|
||||
/// </summary>
|
||||
None,
|
||||
/// <summary>
|
||||
/// The connecting
|
||||
/// </summary>
|
||||
Connecting,
|
||||
/// <summary>
|
||||
/// The open
|
||||
/// </summary>
|
||||
Open,
|
||||
/// <summary>
|
||||
/// The close sent
|
||||
/// </summary>
|
||||
CloseSent,
|
||||
/// <summary>
|
||||
/// The close received
|
||||
/// </summary>
|
||||
CloseReceived,
|
||||
/// <summary>
|
||||
/// The closed
|
||||
/// </summary>
|
||||
Closed,
|
||||
/// <summary>
|
||||
/// The aborted
|
||||
/// </summary>
|
||||
Aborted
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user