16 lines
553 B
C#
16 lines
553 B
C#
using System;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
/// <summary>Represents the IP address of the network gateway. This class cannot be instantiated.</summary>
|
|
// Token: 0x02000157 RID: 343
|
|
public abstract class GatewayIPAddressInformation
|
|
{
|
|
/// <summary>Get the IP address of the gateway.</summary>
|
|
/// <returns>An <see cref="T:System.Net.IPAddress" /> object that contains the IP address of the gateway.</returns>
|
|
// Token: 0x170002E9 RID: 745
|
|
// (get) Token: 0x06000B9A RID: 2970
|
|
public abstract IPAddress Address { get; }
|
|
}
|
|
}
|