1 type derived from GatewayIPAddressInformation
System.Net.NetworkInformation (1)
System\Net\NetworkInformation\SimpleGatewayIPAddressInformation.Unix.cs (1)
6internal sealed class SimpleGatewayIPAddressInformation : GatewayIPAddressInformation
18 references to GatewayIPAddressInformation
netstandard (1)
netstandard.cs (1)
1191[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.NetworkInformation.GatewayIPAddressInformation))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
680[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.NetworkInformation.GatewayIPAddressInformation))]
System.Net.NetworkInformation (16)
System\Net\NetworkInformation\GatewayIPAddressInformationCollection.cs (11)
8public class GatewayIPAddressInformationCollection : ICollection<GatewayIPAddressInformation> 10private readonly List<GatewayIPAddressInformation> _addresses; 14_addresses = new List<GatewayIPAddressInformation>(); 17internal GatewayIPAddressInformationCollection(List<GatewayIPAddressInformation> addresses) 22public virtual void CopyTo(GatewayIPAddressInformation[] array, int offset) 43public virtual GatewayIPAddressInformation this[int index] 51public virtual void Add(GatewayIPAddressInformation address) 56internal void InternalAdd(GatewayIPAddressInformation address) 61public virtual bool Contains(GatewayIPAddressInformation address) 66public virtual IEnumerator<GatewayIPAddressInformation> GetEnumerator() 76public virtual bool Remove(GatewayIPAddressInformation address)
System\Net\NetworkInformation\LinuxIPInterfaceProperties.cs (2)
58List<GatewayIPAddressInformation> collection = new List<GatewayIPAddressInformation>();
System\Net\NetworkInformation\StringParsingHelpers.Addresses.cs (3)
13internal static List<GatewayIPAddressInformation> ParseIPv4GatewayAddressesFromRouteFile(List<GatewayIPAddressInformation> collection, string[] fileLines, string interfaceName) 38internal static void ParseIPv6GatewayAddressesFromRouteFile(List<GatewayIPAddressInformation> collection, string[] fileLines, string interfaceName, long scopeId)