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