IPGlobalProperties.GetActiveTcpListeners Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns endpoint information about the Internet Protocol version 4 (IPv4) and IPv6 Transmission Control Protocol (TCP) listeners on the local computer.
public:
abstract cli::array <System::Net::IPEndPoint ^> ^ GetActiveTcpListeners();
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
public abstract System.Net.IPEndPoint[] GetActiveTcpListeners();
public abstract System.Net.IPEndPoint[] GetActiveTcpListeners();
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
abstract member GetActiveTcpListeners : unit -> System.Net.IPEndPoint[]
abstract member GetActiveTcpListeners : unit -> System.Net.IPEndPoint[]
Public MustOverride Function GetActiveTcpListeners () As IPEndPoint()
A IPEndPoint array that contains objects that describe the active TCP listeners, or an empty array, if no active TCP listeners are detected.
- Attributes
The Win32 function GetTcpTable
failed.
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 );
}
}
public static void ShowActiveTcpListeners()
{
Console.WriteLine("Active TCP Listeners");
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IPEndPoint[] endPoints = properties.GetActiveTcpListeners();
foreach (IPEndPoint e in endPoints)
{
Console.WriteLine(e.ToString());
}
}
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.
Product | Versions |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: