Get Address List from IPHostEntry : IPHostEntry « Socket Network « VB.Net Tutorial






Imports System.Net
Imports System.Net.Sockets


Public Class Tester
    Public Shared Sub Main
        Dim hostEntry As IPHostEntry
        Dim addrList As IPAddress()
        Dim i As Integer
        Dim strTemp As String
    
        Try
          hostEntry = Dns.Resolve("68.178.206.138")
    
          addrList = hostEntry.AddressList
    
          For i = 0 To addrList.Length - 1
            Console.WriteLine(addrList(i).ToString)
          Next
    
        Catch ex As SocketException
          Console.WriteLine(ex.StackTrace.ToString)
        End Try
    End Sub
End Class
68.178.206.138








22.6.IPHostEntry
22.6.1.Get Address List from IPHostEntry
22.6.2.Get Host By Address
22.6.3.Get Host By Name
22.6.4.Get Aliases from IPHostEntry