mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			744 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			744 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Model.ApiClient
 | 
						|
{
 | 
						|
    public class ConnectionOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets a value indicating whether [enable web socket].
 | 
						|
        /// </summary>
 | 
						|
        /// <value><c>true</c> if [enable web socket]; otherwise, <c>false</c>.</value>
 | 
						|
        public bool EnableWebSocket { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets a value indicating whether [report capabilities].
 | 
						|
        /// </summary>
 | 
						|
        /// <value><c>true</c> if [report capabilities]; otherwise, <c>false</c>.</value>
 | 
						|
        public bool ReportCapabilities { get; set; }
 | 
						|
 | 
						|
        public ConnectionOptions()
 | 
						|
        {
 | 
						|
            EnableWebSocket = true;
 | 
						|
            ReportCapabilities = true;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |