IStartupOptions.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #pragma warning disable CS1591
  2. namespace Emby.Server.Implementations
  3. {
  4. public interface IStartupOptions
  5. {
  6. /// <summary>
  7. /// Gets the value of the --ffmpeg command line option.
  8. /// </summary>
  9. string? FFmpegPath { get; }
  10. /// <summary>
  11. /// Gets the value of the --service command line option.
  12. /// </summary>
  13. bool IsService { get; }
  14. /// <summary>
  15. /// Gets the value of the --package-name command line option.
  16. /// </summary>
  17. string? PackageName { get; }
  18. /// <summary>
  19. /// Gets the value of the --restartpath command line option.
  20. /// </summary>
  21. string? RestartPath { get; }
  22. /// <summary>
  23. /// Gets the value of the --restartargs command line option.
  24. /// </summary>
  25. string? RestartArgs { get; }
  26. /// <summary>
  27. /// Gets the value of the --published-server-url command line option.
  28. /// </summary>
  29. string? PublishedServerUrl { get; }
  30. }
  31. }