jellyfin/Emby.Server.Implementations/IStartupOptions.cs

38 lines
1.1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
namespace Emby.Server.Implementations
{
public interface IStartupOptions
{
/// <summary>
/// Gets the value of the --ffmpeg command line option.
/// </summary>
2021-02-27 21:12:55 +01:00
string? FFmpegPath { get; }
/// <summary>
2021-08-29 00:32:50 +02:00
/// Gets a value value indicating whether to run as service by the --service command line option.
/// </summary>
bool IsService { get; }
/// <summary>
/// Gets the value of the --package-name command line option.
/// </summary>
2021-02-27 21:12:55 +01:00
string? PackageName { get; }
/// <summary>
/// Gets the value of the --restartpath command line option.
/// </summary>
2021-02-27 21:12:55 +01:00
string? RestartPath { get; }
/// <summary>
/// Gets the value of the --restartargs command line option.
/// </summary>
2021-02-27 21:12:55 +01:00
string? RestartArgs { get; }
2020-05-02 18:56:09 +02:00
/// <summary>
/// Gets the value of the --published-server-url command line option.
2020-05-02 18:56:09 +02:00
/// </summary>
2021-02-27 21:12:55 +01:00
string? PublishedServerUrl { get; }
}
}