IPAddress Constructor (array<Byte[])
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Namespace: System.Net
Assembly: System.Net (in System.Net.dll)
Syntax
'Declaration
Public Sub New ( _
address As Byte() _
)
public IPAddress(
byte[] address
)
Parameters
- address
Type: array<System.Byte[]
The byte array that contains the IP address.
Exceptions
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 nulla null reference (Nothing in Visual Basic). |
Remarks
The IPAddress is created with IP address 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.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.