mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			760 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			760 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
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
 | 
						|
    }
 | 
						|
}
 |