mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 03:30:06 +00:00
extracted httpclient dependancy
This commit is contained in:
parent
5b1eea558a
commit
28ccfb1bd1
40 changed files with 412 additions and 171 deletions
38
MediaBrowser.Common/Net/WebSocketState.cs
Normal file
38
MediaBrowser.Common/Net/WebSocketState.cs
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
|
||||
namespace MediaBrowser.Common.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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue