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

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Network Remote » IP AddressScreenshots 
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.
w___w__w__._j___ava2_s__.c_o__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.