NetworkManager.cs 1.1 KB

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