我不知道为什么我收到以下错误。任何人都可以对此有所了解吗?

System.Net.Sockets.SocketeException: An invalid argument was supplied Error Code:10022 [closed]
private void btnStart_Click(object sender, EventArgs e)
        {

 try
            {
                epLocal = new IPEndPoint(IPAddress.Parse(txtIP1.Text), Convert.ToInt32(txtPort1.Text));
                sck.Bind(epLocal);
                epRemote = new IPEndPoint(IPAddress.Parse(txtIP2.Text), Convert.ToInt32(txtPort2.Text));
              //Here Error Occures I dont know what is my mistake?
                sck.Bind(epRemote);
                byte[] buffer = new byte[1500];
                sck.BeginReceiveFrom(buffer, 0, buffer.Length, SocketFlags.None, ref epRemote, new AsyncCallback(MessageCallBack), buffer);
                btnStart.Text = "Connected";
                btnStart.Enabled = false;
                btnSend.Enabled = true;
                txtMessage.Focus();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

最佳答案

您将同一个套接字绑定(bind)到多个 Endpoint 对象,这就是您收到 InvalidArgument 异常的原因,您一次只能将一个套接字绑定(bind)到一个 IPEndPoint 对象。

当您尝试在公共(public) IP 地址和本地 IP 上监听时,请尝试这个

 IPEndPoint ep =  new  IPEndPoint(IPAddress.Any, yourportnumber );
 sck.Bind(ep) ;

这将创建一个监听器,用于监听您 PC 的所有 ip 地址,
否则你最好使用一个单独的套接字对象

如果我是你,我不会从 IPAddress 解析本地 textbox 而是我会使用类似 IPAddress.Loopback 的东西

关于c# - System.Net.Sockets.SocketeException : An invalid argument was supplied Error Code:10022,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19874725/

10-15 13:36