2
0

IStartupOptions.cs 1.0 KB

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