using MediaBrowser.Common.Implementations.Networking;
using MediaBrowser.Common.Net;
using MediaBrowser.Model.Net;
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace MediaBrowser.ServerApplication.Networking
{
///
/// Class NetUtils
///
public class NetworkManager : BaseNetworkManager, INetworkManager
{
///
/// Gets the network shares.
///
/// The path.
/// IEnumerable{NetworkShare}.
public IEnumerable GetNetworkShares(string path)
{
return new List ();
}
///
/// Uses the DllImport : NetServerEnum with all its required parameters
/// (see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/netmgmt/netmgmt/netserverenum.asp
/// for full details or method signature) to retrieve a list of domain SV_TYPE_WORKSTATION
/// and SV_TYPE_SERVER PC's
///
/// Arraylist that represents all the SV_TYPE_WORKSTATION and SV_TYPE_SERVER
/// PC's in the Domain
public IEnumerable GetNetworkDevices()
{
return new List ();
}
}
}