Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
IPAddress Class
 Address Property
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
IPAddress..::.Address Property

Updated: November 2007

NOTE: This API is now obsolete.

An Internet Protocol (IP) address.

Namespace:  System.Net
Assembly:  System (in System.dll)

Visual Basic (Declaration)
<ObsoleteAttribute("This property has been deprecated. It is address family dependent. Please use IPAddress.Equals method to perform comparisons. http://go.microsoft.com/fwlink/?linkid=14202")> _
Public Property Address As Long
Visual Basic (Usage)
Dim instance As IPAddress
Dim value As Long

value = instance.Address

instance.Address = value
C#
[ObsoleteAttribute("This property has been deprecated. It is address family dependent. Please use IPAddress.Equals method to perform comparisons. http://go.microsoft.com/fwlink/?linkid=14202")]
public long Address { get; set; }
Visual C++
[ObsoleteAttribute(L"This property has been deprecated. It is address family dependent. Please use IPAddress.Equals method to perform comparisons. http://go.microsoft.com/fwlink/?linkid=14202")]
public:
property long long Address {
    long long get ();
    void set (long long value);
}
J#
/** @property */
/** @attribute ObsoleteAttribute("This property has been deprecated. It is address family dependent. Please use IPAddress.Equals method to perform comparisons. http://go.microsoft.com/fwlink/?linkid=14202") */
public long get_Address()
/** @property */
/** @attribute ObsoleteAttribute("This property has been deprecated. It is address family dependent. Please use IPAddress.Equals method to perform comparisons. http://go.microsoft.com/fwlink/?linkid=14202") */
public  void set_Address(long value)
JScript
public function get Address () : long
public function set Address (value : long)

Property Value

Type: System..::.Int64

The long value of the IP address.

This property is obsolete. Use GetAddressBytes.

To convert Address to dotted-quad notation, use the ToString method.

The following example uses the Address parameter to retrieve the IP address of the IPAddress instance.

Visual Basic
Public Sub PrintAddress(IpAddressString As [String])
    ' Creates an instance of the IPAddress' for the specified IP string in dotted-quad notation.
    Dim hostIPAddress As IPAddress = IPAddress.Parse(IpAddressString)
    Console.WriteLine(ControlChars.Cr + "The IP address '" + IpAddressString + "' is {0}", hostIPAddress.ToString())
End Sub 'PrintAddressFamily


C#
public void PrintAddress(String IpAddressString)
{
  // Creates an instance of the IPAddress for the specified IP string in 
  // dotted-quad notation. 
  IPAddress hostIPAddress = IPAddress.Parse(IpAddressString);
  Console.WriteLine("\nThe IP address '" + IpAddressString + "' is {0}", hostIPAddress.ToString()); 
}

Visual C++
void PrintAddress( String^ IpAddressString )
{
   // Creates an instance of the IPAddress for the specified IP String* in
   // dotted-quad notation.
   IPAddress^ hostIPAddress = IPAddress::Parse( IpAddressString );
   Console::WriteLine( "\nInteger value of IP address {0} is {1}", IpAddressString, hostIPAddress->Address );
}

J#
public void PrintAddress(String ipAddressString)
{
    // Creates an instance of the IPAddress for the specified IP string in 
    // dotted-quad notation. 
    IPAddress hostIPAddress = IPAddress.Parse(ipAddressString);

    Console.WriteLine("\nThe IP address '" 
        + ipAddressString + "' is {0}", hostIPAddress.ToString());
} //PrintAddress

Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 1.0
Obsolete (compiler warning) in 3.5
Obsolete (compiler warning) in 3.5 SP1
Obsolete (compiler warning) in 3.0
Obsolete (compiler warning) in 3.0 SP1
Obsolete (compiler warning) in 2.0
Obsolete (compiler warning) in 2.0 SP1
Obsolete (compiler warning) in 1.1

.NET Compact Framework

Supported in: 1.0
Obsolete (compiler warning) in 3.5
Obsolete (compiler warning) in 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker