Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SystemGatewayIPAddressInformation.cs
Go to the documentation of this file.
1
namespace
System.Net.NetworkInformation
;
2
3
internal
sealed
class
SystemGatewayIPAddressInformation
:
GatewayIPAddressInformation
4
{
5
private
readonly
IPAddress
_address
;
6
7
public
override
IPAddress
Address
=>
_address
;
8
9
private
SystemGatewayIPAddressInformation
(
IPAddress
address)
10
{
11
_address
= address;
12
}
13
14
internal
static
GatewayIPAddressInformationCollection
ToGatewayIpAddressInformationCollection
(
IPAddressCollection
addresses)
15
{
16
GatewayIPAddressInformationCollection
gatewayIPAddressInformationCollection =
new
GatewayIPAddressInformationCollection
();
17
foreach
(
IPAddress
address
in
addresses)
18
{
19
gatewayIPAddressInformationCollection.InternalAdd(
new
SystemGatewayIPAddressInformation
(address));
20
}
21
return
gatewayIPAddressInformationCollection;
22
}
23
}
System.Net.IPAddress
Definition
IPAddress.cs:10
System.Net.NetworkInformation.GatewayIPAddressInformationCollection
Definition
GatewayIPAddressInformationCollection.cs:7
System.Net.NetworkInformation.GatewayIPAddressInformation
Definition
GatewayIPAddressInformation.cs:4
System.Net.NetworkInformation.IPAddressCollection
Definition
IPAddressCollection.cs:7
System.Net.NetworkInformation.SystemGatewayIPAddressInformation.SystemGatewayIPAddressInformation
SystemGatewayIPAddressInformation(IPAddress address)
Definition
SystemGatewayIPAddressInformation.cs:9
System.Net.NetworkInformation.SystemGatewayIPAddressInformation.Address
override IPAddress Address
Definition
SystemGatewayIPAddressInformation.cs:7
System.Net.NetworkInformation.SystemGatewayIPAddressInformation.ToGatewayIpAddressInformationCollection
static GatewayIPAddressInformationCollection ToGatewayIpAddressInformationCollection(IPAddressCollection addresses)
Definition
SystemGatewayIPAddressInformation.cs:14
System.Net.NetworkInformation.SystemGatewayIPAddressInformation._address
readonly IPAddress _address
Definition
SystemGatewayIPAddressInformation.cs:5
System.Net.NetworkInformation.SystemGatewayIPAddressInformation
Definition
SystemGatewayIPAddressInformation.cs:4
System.Net.NetworkInformation
Definition
DuplicateAddressDetectionState.cs:1
source
System.Net.NetworkInformation
System.Net.NetworkInformation
SystemGatewayIPAddressInformation.cs
Generated by
1.10.0