Get your IP address : IP Address « Network Remote « VB.Net






Get your IP address

   
Public Class MainClass
    Public Shared Sub Main()
        Dim objEntry As System.Net.IPHostEntry = System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName)
        Dim strIP As String = CType(objEntry.AddressList.GetValue(0), System.Net.IPAddress).ToString
        System.Console.WriteLine(strIP)
    End Sub
End Class

   
    
    
  








Related examples in the same category

1.IPAddress.Address
2.IPAddress.Broadcast Field provides the IP broadcast address. This field is read-only.
3.IPAddress.Loopback
4.IPAddress.None indicates that no network interface should be used. This field is read-only.
5.IPAddress.Parse converts an IP address string to an IPAddress instance.
6.Create IPEndPoint class with the specified address and port number.
7.IPEndPoint.Create creates an endpoint from a socket address.
8.Serializes endpoint information into a SocketAddress instance.