i 正在开发一个小型的TCP客户/Server平衡。
i 在建立客户并将客户与服务器连接时正面临这一问题。 它给了我这一例外。
www.un.org/Depts/DGACM/index_spanish.htm 通常只允许使用每个袖珍地址(protocol/network Address/port)。
我的法典是这样。
public TCPClient(string remoteIPAddress, int port)
{
this.remoteIPAddress = IPAddress.Parse(remoteIPAddress);
this.port = port;
IPEndPoint remoteEndPoint = new IPEndPoint(this.remoteIPAddress, this.port);
tcpClient = new TcpClient(remoteEndPoint);
}
页: 1
public TCPServer(int listeningPort)
{
this.listeningPort = listeningPort;
tcpListenter = new TcpListener(this.listeningPort);
workers = new List<TCPServerWorker>();
this.keepRunning = false;
}
任何帮助,为什么要获得这一例外。