NetworkManager.cs 956 B

12345678910111213141516171819202122232425262728293031323334
  1. using MediaBrowser.Common.Implementations.Networking;
  2. using MediaBrowser.Common.Net;
  3. using MediaBrowser.Model.Net;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Runtime.InteropServices;
  7. namespace MediaBrowser.ServerApplication.Networking
  8. {
  9. /// <summary>
  10. /// Class NetUtils
  11. /// </summary>
  12. public class NetworkManager : BaseNetworkManager, INetworkManager
  13. {
  14. /// <summary>
  15. /// Gets the network shares.
  16. /// </summary>
  17. /// <param name="path">The path.</param>
  18. /// <returns>IEnumerable{NetworkShare}.</returns>
  19. public IEnumerable<NetworkShare> GetNetworkShares(string path)
  20. {
  21. return new List<NetworkShare> ();
  22. }
  23. /// <summary>
  24. /// Gets a list of network devices
  25. /// </summary>
  26. /// PC's in the Domain</returns>
  27. public IEnumerable<string> GetNetworkDevices()
  28. {
  29. return new List<string> ();
  30. }
  31. }
  32. }