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
Dim instance As IPAddress
Dim value As Long
value = instance.Address
instance.Address = value
[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; }
[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);
}
public function get Address () : long
public function set Address (value : long)
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.
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
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());
}
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 );
}
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));
}
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.
.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
Reference