IPAddress Constructor (Byte[])
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the IPAddress class with the address specified as a Byte array.
Assembly: System.Net (in System.Net.dll)
Parameters
- address
- Type:
System.Byte
[]
The byte array that contains the IP address.
| Exception | Condition |
|---|---|
| ArgumentException | The length of the address parameter is not 4 bytes required for an IPv4 address or 16 bytes required for an IPv6 address. |
| ArgumentNullException | The address parameter is null. |
The IPAddress is created with IP address set to address.
If the length of address is 4, IPAddress(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.