Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ToGatewayIpAddressInformationCollection()

static GatewayIPAddressInformationCollection System.Net.NetworkInformation.SystemGatewayIPAddressInformation.ToGatewayIpAddressInformationCollection ( IPAddressCollection addresses)
inlinestaticpackage

Definition at line 14 of file SystemGatewayIPAddressInformation.cs.

15 {
16 GatewayIPAddressInformationCollection gatewayIPAddressInformationCollection = new GatewayIPAddressInformationCollection();
17 foreach (IPAddress address in addresses)
18 {
19 gatewayIPAddressInformationCollection.InternalAdd(new SystemGatewayIPAddressInformation(address));
20 }
21 return gatewayIPAddressInformationCollection;
22 }

References System.Net.NetworkInformation.SystemGatewayIPAddressInformation.SystemGatewayIPAddressInformation().

Referenced by System.Net.NetworkInformation.SystemIPInterfaceProperties.SystemIPInterfaceProperties().