IStartupOptions.cs 1.3 KB

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