IStartupOptions.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  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 --noautorunwebapp command line option.
  16. /// </summary>
  17. bool NoAutoRunWebApp { get; }
  18. /// <summary>
  19. /// Gets the value of the --package-name command line option.
  20. /// </summary>
  21. string PackageName { get; }
  22. /// <summary>
  23. /// Gets the value of the --restartpath command line option.
  24. /// </summary>
  25. string RestartPath { get; }
  26. /// <summary>
  27. /// Gets the value of the --restartargs command line option.
  28. /// </summary>
  29. string RestartArgs { get; }
  30. /// <summary>
  31. /// Gets the value of the --plugin-manifest-url command line option.
  32. /// </summary>
  33. string PluginManifestUrl { get; }
  34. /// <summary>
  35. /// Gets the value of the --published-server-url command line option.
  36. /// </summary>
  37. Uri PublishedServerUrl { get; }
  38. }
  39. }