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