aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IStartupOptions.cs
blob: e7e72c686b821faba567e47092b19766797d3c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma warning disable CS1591

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 --published-server-url command line option.
        /// </summary>
        Uri PublishedServerUrl { get; }
    }
}