Adding a shared library for common classes
This commit is contained in:
22
aurora-sharp-desktop/Aurora/Utils/IpUtil.cs
Normal file
22
aurora-sharp-desktop/Aurora/Utils/IpUtil.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
|
||||
namespace Aurora.Utils
|
||||
{
|
||||
public static class IpUtil
|
||||
{
|
||||
public static string GetLocalIPAddress()
|
||||
{
|
||||
string returnIp = "";
|
||||
var host = Dns.GetHostEntry(Dns.GetHostName());
|
||||
foreach (var ip in host.AddressList)
|
||||
{
|
||||
if (ip.AddressFamily == AddressFamily.InterNetwork)
|
||||
{
|
||||
returnIp = ip.ToString();
|
||||
}
|
||||
}
|
||||
return returnIp;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user