IPAddress.Parse converts an IP address string to an IPAddress instance. : 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 
IPAddress.Parse converts an IP address string to an IPAddress instance.
 

Imports System
Imports System.Net

Class ParseAddress
    Public Overloads Shared Sub Main()
        Try
            Dim address As IPAddress = IPAddress.Parse("not an IP address")
            Console.WriteLine(address.ToString())
        Catch As ArgumentNullException
            Console.WriteLine(("Source : " + e.Source))
            Console.WriteLine(("Message : " + e.Message))
        Catch As FormatException
            Console.WriteLine(("Source : " + e.Source))
            Console.WriteLine(("Message : " + e.Message))
        Catch As Exception
            Console.WriteLine(("Source : " + e.Source))
            Console.WriteLine(("Message : " + e.Message))
        End Try
    End Sub
End Class

   
  
Related examples in the same category
1.Get your IP address
2.IPAddress.Address
3.IPAddress.Broadcast Field provides the IP broadcast address. This field is read-only.
4.IPAddress.Loopback
5.IPAddress.None indicates that no network interface should be used. This field is read-only.
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.
ww_w.ja__v__a2_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.