This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,15 @@
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; }
}
}