Files
2026-06-04 11:42:34 +02:00

40 lines
2.3 KiB
C#

using System;
namespace System.Net.NetworkInformation
{
/// <summary>Provides User Datagram Protocol (UDP) statistical data.</summary>
// Token: 0x020001BC RID: 444
public abstract class UdpStatistics
{
/// <summary>Gets the number of User Datagram Protocol (UDP) datagrams that were received.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of datagrams that were delivered to UDP users.</returns>
// Token: 0x170004DD RID: 1245
// (get) Token: 0x06000E9E RID: 3742
public abstract long DatagramsReceived { get; }
/// <summary>Gets the number of User Datagram Protocol (UDP) datagrams that were sent.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of datagrams that were sent.</returns>
// Token: 0x170004DE RID: 1246
// (get) Token: 0x06000E9F RID: 3743
public abstract long DatagramsSent { get; }
/// <summary>Gets the number of User Datagram Protocol (UDP) datagrams that were received and discarded because of port errors.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of received UDP datagrams that were discarded because there was no listening application at the destination port.</returns>
// Token: 0x170004DF RID: 1247
// (get) Token: 0x06000EA0 RID: 3744
public abstract long IncomingDatagramsDiscarded { get; }
/// <summary>Gets the number of User Datagram Protocol (UDP) datagrams that were received and discarded because of errors other than bad port information.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of received UDP datagrams that could not be delivered for reasons other than the lack of an application at the destination port.</returns>
// Token: 0x170004E0 RID: 1248
// (get) Token: 0x06000EA1 RID: 3745
public abstract long IncomingDatagramsWithErrors { get; }
/// <summary>Gets the number of local endpoints that are listening for User Datagram Protocol (UDP) datagrams.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of sockets that are listening for UDP datagrams.</returns>
// Token: 0x170004E1 RID: 1249
// (get) Token: 0x06000EA2 RID: 3746
public abstract int UdpListeners { get; }
}
}