Gets my local IP address (not necessarily external) and subnet mask : IP Address « Network « C# / C Sharp






Gets my local IP address (not necessarily external) and subnet mask

  
/* Copyright (c) 2010 Michael Lidgren

Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.

*/
using System;
using System.Net;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Text;
using System.Text.RegularExpressions;

namespace Lidgren.Network
{
  /// <summary>
  /// Utility methods
  /// </summary>
  public static class NetUtility
  {


    /// <summary>
    /// Gets my local IP address (not necessarily external) and subnet mask
    /// </summary>
    public static IPAddress GetMyAddress(out IPAddress mask)
    {
      NetworkInterface ni = GetNetworkInterface();
      if (ni == null)
      {
        mask = null;
        return null;
      }

      IPInterfaceProperties properties = ni.GetIPProperties();
      foreach (UnicastIPAddressInformation unicastAddress in properties.UnicastAddresses)
      {
        if (unicastAddress != null && unicastAddress.Address != null && unicastAddress.Address.AddressFamily == AddressFamily.InterNetwork)
        {
          mask = unicastAddress.IPv4Mask;
          return unicastAddress.Address;
        }
      }

      mask = null;
      return null;
    }

    private static NetworkInterface GetNetworkInterface()
    {
      IPGlobalProperties computerProperties = IPGlobalProperties.GetIPGlobalProperties();
      if (computerProperties == null)
        return null;

      NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces();
      if (nics == null || nics.Length < 1)
        return null;

      NetworkInterface best = null;
      foreach (NetworkInterface adapter in nics)
      {
        if (adapter.NetworkInterfaceType == NetworkInterfaceType.Loopback || adapter.NetworkInterfaceType == NetworkInterfaceType.Unknown)
          continue;
        if (!adapter.Supports(NetworkInterfaceComponent.IPv4))
          continue;
        if (best == null)
          best = adapter;
        if (adapter.OperationalStatus != OperationalStatus.Up)
          continue;

        // A computer could have several adapters (more than one network card)
        // here but just return the first one for now...
        return adapter;
      }
      return best;
    }
  }
}

   
    
  








Related examples in the same category

1.IPAddress AddressFamily
2.Parse an IPAddress
3.Loopback IPAddress
4.Broadcast IPAddress
5.Any IPAddress
6.None IPAddress
7.IsLoopback IPAddress
8.IP Address parse, lookup IP Address parse, lookup
9.IPEndPoint sampleIPEndPoint sample
10.Get Host By Name, Get Host Name
11.Get Host Entry
12.Parse Host String
13.Get Current Ip Address
14.Get Host IP Address
15.Get IP address by query whatismyip.com
16.Get Local IP Address
17.IP to value
18.Get user IP from HttpContext
19.IP to Uint
20.UInt32 To IP Address
21.IP Address To UInt 32
22.Get IP address from notation (xxx.xxx.xxx.xxx) or hostname
23.Returns true if the IPEndPoint supplied is on the same subnet as this host
24.Is Ip Address By Regular Expression
25.Checks if a given string is a valid IP address.
26.IP Address To NumberIP Address To Number
27.Get the description of a Enum value.
28.Get Subnet Mask
29.Get Available Socket Port