diff options
Diffstat (limited to 'MediaBrowser.Common/Net/INetworkManager.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/INetworkManager.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/INetworkManager.cs b/MediaBrowser.Common/Net/INetworkManager.cs index b5f1c8294..979dae49c 100644 --- a/MediaBrowser.Common/Net/INetworkManager.cs +++ b/MediaBrowser.Common/Net/INetworkManager.cs @@ -44,5 +44,12 @@ namespace MediaBrowser.Common.Net /// <param name="endpointstring">The endpointstring.</param> /// <returns>IPEndPoint.</returns> IPEndPoint Parse(string endpointstring); + + /// <summary> + /// Determines whether [is in local network] [the specified endpoint]. + /// </summary> + /// <param name="endpoint">The endpoint.</param> + /// <returns><c>true</c> if [is in local network] [the specified endpoint]; otherwise, <c>false</c>.</returns> + bool IsInLocalNetwork(string endpoint); } }
\ No newline at end of file |
