c# – 有没有办法指定在tcpClient中使用的本地端口?

前端之家收集整理的这篇文章主要介绍了c# – 有没有办法指定在tcpClient中使用的本地端口?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在使用这个函数来创建我的tcpClient:
clientSocket = new TcpClient("localhost",clientPort);

但是clientPort是服务器的端口.

有没有办法使用tcpClient指定客户端?

谢谢

解决方法

constructor overload that takes an IPEndPoint允许您将TcpClient的内部Socket绑定到特定端口:
IPAddress ipAddress = Dns.GetHostEntry(Dns.GetHostName()).AddressList[0];
IPEndPoint ipLocalEndPoint = new IPEndPoint(ipAddress,clientPort);
TcpClient clientSocket = new TcpClient(ipLocalEndPoint);
clientSocket.Connect(remoteHost,remotePort);
原文链接:https://www.f2er.com/csharp/97234.html

猜你在找的C#相关文章