using System;
namespace System.Net.NetworkInformation
{
/// Represents the IP address of the network gateway. This class cannot be instantiated.
// Token: 0x02000157 RID: 343
public abstract class GatewayIPAddressInformation
{
/// Get the IP address of the gateway.
/// An object that contains the IP address of the gateway.
// Token: 0x170002E9 RID: 745
// (get) Token: 0x06000B9A RID: 2970
public abstract IPAddress Address { get; }
}
}