2
0

IStartupOptions.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 --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. Uri PublishedServerUrl { get; }
  31. }
  32. }