diff options
| author | WWWesten <4700006+WWWesten@users.noreply.github.com> | 2021-11-01 23:43:29 +0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-01 23:43:29 +0500 |
| commit | 0a14279e2a21bcb9654a06a2d49e1e4f0cc5329c (patch) | |
| tree | e1b1bd603b011ca98e5793e356326bf4a35a7050 /Emby.Server.Implementations/IStartupOptions.cs | |
| parent | f2817fef743eeb75a00782ceea363b2d3e7dc9f2 (diff) | |
| parent | 76eeb8f655424d295e73ced8349c6fefee6ddb12 (diff) | |
Merge branch 'jellyfin:master' into master
Diffstat (limited to 'Emby.Server.Implementations/IStartupOptions.cs')
| -rw-r--r-- | Emby.Server.Implementations/IStartupOptions.cs | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/Emby.Server.Implementations/IStartupOptions.cs b/Emby.Server.Implementations/IStartupOptions.cs index 24aaa76c0..3769ae4dd 100644 --- a/Emby.Server.Implementations/IStartupOptions.cs +++ b/Emby.Server.Implementations/IStartupOptions.cs @@ -1,40 +1,38 @@ namespace Emby.Server.Implementations { + /// <summary> + /// Specifies the contract for server startup options. + /// </summary> public interface IStartupOptions { /// <summary> - /// --ffmpeg + /// Gets the value of the --ffmpeg command line option. /// </summary> - string FFmpegPath { get; } + string? FFmpegPath { get; } /// <summary> - /// --ffprobe - /// </summary> - string FFprobePath { get; } - - /// <summary> - /// --service + /// Gets a value indicating whether to run as service by the --service command line option. /// </summary> bool IsService { get; } /// <summary> - /// --noautorunwebapp + /// Gets the value of the --package-name command line option. /// </summary> - bool NoAutoRunWebApp { get; } + string? PackageName { get; } /// <summary> - /// --package-name + /// Gets the value of the --restartpath command line option. /// </summary> - string PackageName { get; } + string? RestartPath { get; } /// <summary> - /// --restartpath + /// Gets the value of the --restartargs command line option. /// </summary> - string RestartPath { get; } + string? RestartArgs { get; } /// <summary> - /// --restartargs + /// Gets the value of the --published-server-url command line option. /// </summary> - string RestartArgs { get; } + string? PublishedServerUrl { get; } } } |
