The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
IPAddress::Address Property
.NET Framework (current version)
Note: This API is now obsolete.
Namespace:
System.Net
Assembly: System (in System.dll)
Return to top
An Internet Protocol (IP) address.
Assembly: System (in System.dll)
public: [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")] property long long Address { long long get(); void set(long long value); }
| Exception | Condition |
|---|---|
| SocketException | The address family is InterNetworkV6. |
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.
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 ); }
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Show: