IPAddress Constructor (Byte[], Int64)
Collapse the table of content
Expand the table of content

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.

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

public IPAddress(
	byte[] address,
	long scopeid
)

Parameters

address
Type: System.Byte []
The byte array value of the IPv6 address.
scopeid
Type: System.Int64
The long value of the scope identifier.

ExceptionCondition
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.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft