mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace Emby.Server.Implementations
 | 
						|
{
 | 
						|
    public interface IStartupOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the value of the --ffmpeg command line option.
 | 
						|
        /// </summary>
 | 
						|
        string FFmpegPath { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the value of the --service command line option.
 | 
						|
        /// </summary>
 | 
						|
        bool IsService { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the value of the --noautorunwebapp command line option.
 | 
						|
        /// </summary>
 | 
						|
        bool NoAutoRunWebApp { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the value of the --package-name command line option.
 | 
						|
        /// </summary>
 | 
						|
        string PackageName { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the value of the --restartpath command line option.
 | 
						|
        /// </summary>
 | 
						|
        string RestartPath { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the value of the --restartargs command line option.
 | 
						|
        /// </summary>
 | 
						|
        string RestartArgs { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the value of the --plugin-manifest-url command line option.
 | 
						|
        /// </summary>
 | 
						|
        string PluginManifestUrl { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the value of the --published-server-url command line option.
 | 
						|
        /// </summary>
 | 
						|
        Uri PublishedServerUrl { get; }
 | 
						|
    }
 | 
						|
}
 |