IPAddress Constructor (Byte[], Int64)
[ 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 an IPv6 address specified as a Byte array and the specified scope identifier.
Assembly: System.Net (in System.Net.dll)
Parameters
- address
- Type:
System.Byte
[]
The byte array value of the IPv6 address.
- scopeid
- Type: System.Int64
The long value of the scope identifier.
| Exception | Condition |
|---|---|
| ArgumentException | The length of the address parameter is not 16 bytes required for an IPv6 address. |
| ArgumentNullException | The address parameter is null. |
| ArgumentOutOfRangeException | The scopeid parameter is less than 0 or the scopeid is greater than 0x00000000FFFFFFFF. |
This constructor instantiates an IPv6 address. The scopeid identifies a network interface in the case of a link-local address. The scope is valid only for link-local and site-local addresses.
The Byte array is assumed to be in network byte order with the most significant byte first in index position 0.