IPAddress Constructor (array<Byte>^, Int64)
.NET Framework (current version)
Initializes a new instance of the IPAddress class with the address specified as a Byte array and the specified scope identifier.
Assembly: System (in System.dll)
Parameters
- address
-
Type:
array<System::Byte>^
The byte array value of the IP address.
- scopeid
-
Type:
System::Int64
The long value of the scope identifier.
| Exception | Condition |
|---|---|
| ArgumentNullException | address is null. |
| ArgumentException | address contains a bad IP address. |
| ArgumentOutOfRangeException | scopeid < 0 or scopeid > 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.
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Show: