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

28 lines
1.3 KiB
C#

using System;
namespace System.Net.NetworkInformation
{
/// <summary>Provides information about the Transmission Control Protocol (TCP) connections on the local computer.</summary>
// Token: 0x020001B5 RID: 437
public abstract class TcpConnectionInformation
{
/// <summary>Gets the local endpoint of a Transmission Control Protocol (TCP) connection.</summary>
/// <returns>An <see cref="T:System.Net.IPEndPoint" /> instance that contains the IP address and port on the local computer.</returns>
// Token: 0x170004AD RID: 1197
// (get) Token: 0x06000E68 RID: 3688
public abstract IPEndPoint LocalEndPoint { get; }
/// <summary>Gets the remote endpoint of a Transmission Control Protocol (TCP) connection.</summary>
/// <returns>An <see cref="T:System.Net.IPEndPoint" /> instance that contains the IP address and port on the remote computer.</returns>
// Token: 0x170004AE RID: 1198
// (get) Token: 0x06000E69 RID: 3689
public abstract IPEndPoint RemoteEndPoint { get; }
/// <summary>Gets the state of this Transmission Control Protocol (TCP) connection.</summary>
/// <returns>One of the <see cref="T:System.Net.NetworkInformation.TcpState" /> enumeration values.</returns>
// Token: 0x170004AF RID: 1199
// (get) Token: 0x06000E6A RID: 3690
public abstract TcpState State { get; }
}
}