ServerAuthorization.cs 832 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Diagnostics;
  3. using System.IO;
  4. using System.Reflection;
  5. namespace MediaBrowser.ServerApplication.Native
  6. {
  7. /// <summary>
  8. /// Class Authorization
  9. /// </summary>
  10. public static class ServerAuthorization
  11. {
  12. /// <summary>
  13. /// Authorizes the server.
  14. /// </summary>
  15. /// <param name="httpServerPort">The HTTP server port.</param>
  16. /// <param name="httpServerUrlPrefix">The HTTP server URL prefix.</param>
  17. /// <param name="webSocketPort">The web socket port.</param>
  18. /// <param name="udpPort">The UDP port.</param>
  19. /// <param name="tempDirectory">The temp directory.</param>
  20. public static void AuthorizeServer(int httpServerPort, string httpServerUrlPrefix, int udpPort, string tempDirectory)
  21. {
  22. }
  23. }
  24. }