NetworkManager.cs 1005 B

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