You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
760 B
39 lines
760 B
|
|
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
|
|
}
|
|
}
|