IStartupOptions.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #pragma warning disable CS1591
  2. #nullable enable
  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 --package-name command line option.
  17. /// </summary>
  18. string? PackageName { get; }
  19. /// <summary>
  20. /// Gets the value of the --restartpath command line option.
  21. /// </summary>
  22. string? RestartPath { get; }
  23. /// <summary>
  24. /// Gets the value of the --restartargs command line option.
  25. /// </summary>
  26. string? RestartArgs { get; }
  27. /// <summary>
  28. /// Gets the value of the --published-server-url command line option.
  29. /// </summary>
  30. string? PublishedServerUrl { get; }
  31. }
  32. }