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