Maison >développement back-end >C++ >Comment vérifier la disponibilité du port TCP en C# ?
Lors de l'établissement d'une connexion à l'aide de TcpClient ou de n'importe quel socket, il est avantageux de vérifier la disponibilité du port souhaité. port sur votre machine. Voici comment aborder cela :
Pour vérifier la disponibilité d'un port TCP en C#, vous pouvez utiliser l'objet IPGlobalProperties et sa méthode GetActiveTcpConnections() dans l'espace de noms System.Net.NetworkInformation. Cette approche fournit un moyen robuste d'évaluer les connexions TCP actuelles sur votre système.
Le code suivant montre comment vous pouvez mettre en œuvre cette vérification :
int port = 456; // Replace with the port you want to check bool isAvailable = true; // Get the current TCP connections IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties(); TcpConnectionInformation[] tcpConnInfoArray = ipGlobalProperties.GetActiveTcpConnections(); // Check if the specified port is already in use foreach (TcpConnectionInformation tcpi in tcpConnInfoArray) { if (tcpi.LocalEndPoint.Port == port) { isAvailable = false; break; } } // Proceed further if the port is available if (isAvailable) { // Your code for utilizing the port }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!