2019-01-28 21:45:00 +00:00
|
|
|
namespace Emby.Server.Implementations
|
2019-01-28 20:58:47 +00:00
|
|
|
{
|
|
|
|
public interface IStartupOptions
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-05 17:46:36 +00:00
|
|
|
/// Gets the value of the --ffmpeg command line option.
|
2019-01-28 20:58:47 +00:00
|
|
|
/// </summary>
|
|
|
|
string FFmpegPath { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 17:46:36 +00:00
|
|
|
/// Gets the value of the --service command line option.
|
2019-01-28 20:58:47 +00:00
|
|
|
/// </summary>
|
|
|
|
bool IsService { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 17:46:36 +00:00
|
|
|
/// Gets the value of the --noautorunwebapp command line option.
|
2019-01-28 20:58:47 +00:00
|
|
|
/// </summary>
|
2019-01-28 21:45:00 +00:00
|
|
|
bool NoAutoRunWebApp { get; }
|
2019-01-28 20:58:47 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 17:46:36 +00:00
|
|
|
/// Gets the value of the --package-name command line option.
|
2019-01-28 20:58:47 +00:00
|
|
|
/// </summary>
|
|
|
|
string PackageName { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 17:46:36 +00:00
|
|
|
/// Gets the value of the --restartpath command line option.
|
2019-01-28 20:58:47 +00:00
|
|
|
/// </summary>
|
|
|
|
string RestartPath { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-05 17:46:36 +00:00
|
|
|
/// Gets the value of the --restartargs command line option.
|
2019-01-28 20:58:47 +00:00
|
|
|
/// </summary>
|
|
|
|
string RestartArgs { get; }
|
2020-04-05 17:46:36 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the value of the --plugin-manifest-url command line option.
|
|
|
|
/// </summary>
|
|
|
|
string PluginManifestUrl { get; }
|
2019-01-28 20:58:47 +00:00
|
|
|
}
|
|
|
|
}
|