IPGlobalProperties::GetActiveTcpListeners Method ()
Returns endpoint information about the Internet Protocol version 4 (IPv4) and IPv6 Transmission Control Protocol (TCP) listeners on the local computer.
Assembly: System (in System.dll)
Return Value
Type: array<System.Net::IPEndPoint^>^A IPEndPoint array that contains objects that describe the active TCP listeners, or an empty array, if no active TCP listeners are detected.
| Exception | Condition |
|---|---|
| NetworkInformationException | The Win32 function GetTcpTable failed. |
The objects returned by this method include listeners in all TCP states except the Listen state.
The TCP protocol is defined in IETF RFC 793. Note that the objects returned by this method reflect the connections as of the time the array is created. This information is not updated dynamically.
The following code example displays endpoint information for active TCP listeners.
void ShowActiveTcpListeners() { Console::WriteLine( "Active TCP Listeners" ); IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); array<IPEndPoint^>^endPoints = properties->GetActiveTcpListeners(); System::Collections::IEnumerator^ myEnum7 = endPoints->GetEnumerator(); while ( myEnum7->MoveNext() ) { IPEndPoint^ e = safe_cast<IPEndPoint^>(myEnum7->Current); Console::WriteLine( e ); } }
for reading network information. Associated enumeration: Read.
Available since 2.0