2
0

IStartupOptions.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 --published-server-url command line option.
  33. /// </summary>
  34. Uri PublishedServerUrl { get; }
  35. }
  36. }