Files
Dec2017-Script-Dump/System/Net/NetworkInformation/TcpStatistics.cs
T
2026-06-04 11:42:34 +02:00

94 lines
5.3 KiB
C#

using System;
namespace System.Net.NetworkInformation
{
/// <summary>Provides Transmission Control Protocol (TCP) statistical data.</summary>
// Token: 0x020001B8 RID: 440
public abstract class TcpStatistics
{
/// <summary>Gets the number of accepted Transmission Control Protocol (TCP) connection requests.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of TCP connection requests accepted.</returns>
// Token: 0x170004B3 RID: 1203
// (get) Token: 0x06000E70 RID: 3696
public abstract long ConnectionsAccepted { get; }
/// <summary>Gets the number of Transmission Control Protocol (TCP) connection requests made by clients.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of TCP connections initiated by clients.</returns>
// Token: 0x170004B4 RID: 1204
// (get) Token: 0x06000E71 RID: 3697
public abstract long ConnectionsInitiated { get; }
/// <summary>Specifies the total number of Transmission Control Protocol (TCP) connections established.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of connections established.</returns>
// Token: 0x170004B5 RID: 1205
// (get) Token: 0x06000E72 RID: 3698
public abstract long CumulativeConnections { get; }
/// <summary>Gets the number of current Transmission Control Protocol (TCP) connections.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of current TCP connections.</returns>
// Token: 0x170004B6 RID: 1206
// (get) Token: 0x06000E73 RID: 3699
public abstract long CurrentConnections { get; }
/// <summary>Gets the number of Transmission Control Protocol (TCP) errors received.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of TCP errors received.</returns>
// Token: 0x170004B7 RID: 1207
// (get) Token: 0x06000E74 RID: 3700
public abstract long ErrorsReceived { get; }
/// <summary>Gets the number of failed Transmission Control Protocol (TCP) connection attempts.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of failed TCP connection attempts.</returns>
// Token: 0x170004B8 RID: 1208
// (get) Token: 0x06000E75 RID: 3701
public abstract long FailedConnectionAttempts { get; }
/// <summary>Gets the maximum number of supported Transmission Control Protocol (TCP) connections.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of TCP connections that can be supported.</returns>
// Token: 0x170004B9 RID: 1209
// (get) Token: 0x06000E76 RID: 3702
public abstract long MaximumConnections { get; }
/// <summary>Gets the maximum retransmission time-out value for Transmission Control Protocol (TCP) segments.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the maximum number of milliseconds permitted by a TCP implementation for the retransmission time-out value.</returns>
// Token: 0x170004BA RID: 1210
// (get) Token: 0x06000E77 RID: 3703
public abstract long MaximumTransmissionTimeout { get; }
/// <summary>Gets the minimum retransmission time-out value for Transmission Control Protocol (TCP) segments.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the minimum number of milliseconds permitted by a TCP implementation for the retransmission time-out value.</returns>
// Token: 0x170004BB RID: 1211
// (get) Token: 0x06000E78 RID: 3704
public abstract long MinimumTransmissionTimeout { get; }
/// <summary>Gets the number of RST packets received by Transmission Control Protocol (TCP) connections.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of reset TCP connections.</returns>
// Token: 0x170004BC RID: 1212
// (get) Token: 0x06000E79 RID: 3705
public abstract long ResetConnections { get; }
/// <summary>Gets the number of Transmission Control Protocol (TCP) segments sent with the reset flag set.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of TCP segments sent with the reset flag set.</returns>
// Token: 0x170004BD RID: 1213
// (get) Token: 0x06000E7A RID: 3706
public abstract long ResetsSent { get; }
/// <summary>Gets the number of Transmission Control Protocol (TCP) segments received.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of TCP segments received.</returns>
// Token: 0x170004BE RID: 1214
// (get) Token: 0x06000E7B RID: 3707
public abstract long SegmentsReceived { get; }
/// <summary>Gets the number of Transmission Control Protocol (TCP) segments re-sent.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of TCP segments retransmitted.</returns>
// Token: 0x170004BF RID: 1215
// (get) Token: 0x06000E7C RID: 3708
public abstract long SegmentsResent { get; }
/// <summary>Gets the number of Transmission Control Protocol (TCP) segments sent.</summary>
/// <returns>An <see cref="T:System.Int64" /> value that specifies the total number of TCP segments sent.</returns>
// Token: 0x170004C0 RID: 1216
// (get) Token: 0x06000E7D RID: 3709
public abstract long SegmentsSent { get; }
}
}