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

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.

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

public IPAddress(
	byte[] address
)

Parameters

address
Type: System.Byte []
The byte array that contains the IP address.

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

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft