0 out of 1 rated this helpful - Rate this topic

TcpConnectionInformation Class

Provides information about the Transmission Control Protocol (TCP) connections on the local computer.

Namespace: System.Net.NetworkInformation
Assembly: System (in system.dll)

public abstract class TcpConnectionInformation
public abstract class TcpConnectionInformation
public abstract class TcpConnectionInformation
Not applicable.

TCP is a connection-oriented reliable protocol for transporting data between networked computers. It is defined in IETF RFC 793.

The following example displays endpoint information for active TCP connections.

public static void GetTcpConnections()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    TcpConnectionInformation[] connections = properties.GetActiveTcpConnections();
    
    foreach (TcpConnectionInformation t in connections)
    {
        Console.Write("Local endpoint: {0} ",t.LocalEndPoint.Address);
        Console.Write("Remote endpoint: {0} ",t.RemoteEndPoint.Address);
        Console.WriteLine("{0}",t.State);
    }
}

System.Object
  System.Net.NetworkInformation.TcpConnectionInformation
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.