IStartupOptions.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. namespace Emby.Server.Implementations
  2. {
  3. public interface IStartupOptions
  4. {
  5. /// <summary>
  6. /// Gets the value of the --ffmpeg command line option.
  7. /// </summary>
  8. string FFmpegPath { get; }
  9. /// <summary>
  10. /// Gets the value of the --service command line option.
  11. /// </summary>
  12. bool IsService { get; }
  13. /// <summary>
  14. /// Gets the value of the --noautorunwebapp command line option.
  15. /// </summary>
  16. bool NoAutoRunWebApp { get; }
  17. /// <summary>
  18. /// Gets the value of the --package-name command line option.
  19. /// </summary>
  20. string PackageName { get; }
  21. /// <summary>
  22. /// Gets the value of the --restartpath command line option.
  23. /// </summary>
  24. string RestartPath { get; }
  25. /// <summary>
  26. /// Gets the value of the --restartargs command line option.
  27. /// </summary>
  28. string RestartArgs { get; }
  29. /// <summary>
  30. /// Gets the value of the --plugin-manifest-url command line option.
  31. /// </summary>
  32. string PluginManifestUrl { get; }
  33. }
  34. }