You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
using MediaBrowser.Model.Net;
|
|
using System.Collections.Generic;
|
|
using System.Net;
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
{
|
|
public interface INetworkManager
|
|
{
|
|
/// <summary>
|
|
/// Gets the machine's local ip address
|
|
/// </summary>
|
|
/// <returns>IPAddress.</returns>
|
|
IEnumerable<string> GetLocalIpAddresses();
|
|
|
|
/// <summary>
|
|
/// Gets a random port number that is currently available
|
|
/// </summary>
|
|
/// <returns>System.Int32.</returns>
|
|
int GetRandomUnusedPort();
|
|
|
|
/// <summary>
|
|
/// Returns MAC Address from first Network Card in Computer
|
|
/// </summary>
|
|
/// <returns>[string] MAC Address</returns>
|
|
string GetMacAddress();
|
|
|
|
/// <summary>
|
|
/// Gets the network shares.
|
|
/// </summary>
|
|
/// <param name="path">The path.</param>
|
|
/// <returns>IEnumerable{NetworkShare}.</returns>
|
|
IEnumerable<NetworkShare> GetNetworkShares(string path);
|
|
|
|
/// <summary>
|
|
/// Gets available devices within the domain
|
|
/// </summary>
|
|
/// <returns>PC's in the Domain</returns>
|
|
IEnumerable<string> GetNetworkDevices();
|
|
|
|
/// <summary>
|
|
/// Parses the specified endpointstring.
|
|
/// </summary>
|
|
/// <param name="endpointstring">The endpointstring.</param>
|
|
/// <returns>IPEndPoint.</returns>
|
|
IPEndPoint Parse(string endpointstring);
|
|
}
|
|
} |