Windows apps
Collapse the table of content
Expand the table of content
Information
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 Constructor (array<Byte>^)

 

Initializes a new instance of the IPAddress class with the address specified as a Byte array.

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

public:
IPAddress(
	array<unsigned char>^ address
)

Parameters

address
Type: array<System::Byte>^

The byte array value of the IP address.

Exception Condition
ArgumentNullException

address is null.

ArgumentException

address contains a bad IP address.

The IPAddress is created with the Address property set to address.

If the length of address is 4, IPAddress(array<Byte>^) constructs an IPv4 address; otherwise, an IPv6 address with a scope of 0 is constructed.

The Byte array is assumed to be in network byte order with the most significant byte first in index position 0.

Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Return to top
Show:
© 2017 Microsoft