.NET Framework Class Library
IPAddress..::.Address Property

NOTE: This API is now obsolete.

An Internet Protocol (IP) address.

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

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);
}
JScript
public function get Address () : long
public function set Address (value : long)

Property Value

Type: System..::.Int64
The long value of the IP address.
Remarks

This property is obsolete. Use GetAddressBytes.

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

Examples

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 );
}
CPP_OLD
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(S"\nInteger value of IP address {0} is {1}", IpAddressString, __box( hostIPAddress->Address));
}
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, 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.
Version Information

.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 3.0 SP2
Obsolete (compiler warning) in 2.0
Obsolete (compiler warning) in 2.0 SP1
Obsolete (compiler warning) in 2.0 SP2
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
See Also

Reference

Tags :


Page view tracker