参数计数不匹配。穿线

时间:2013-06-28 12:25:07

标签: c# wpf multithreading

我正在尝试创建服务器/多客户端聊天程序。客户端程序完美运行。问题出在服务器的问题上。当我单击“连接”按钮时,客户端应该连接到服务器,但

An unhandled exception of type 'System.Reflection.TargetParameterCountException' occurred in mscorlib.dll 
Additional information: Parameter count mismatch.

出现,服务器程序崩溃。我很确定这是因为我希望服务器端程序将客户端的ip和昵称保存到2个ListBox中。 我的活动:

        private void server_OnClientConnected(object Sender, ConnectedArguments R)
    {
        server.BroadCast(R.Name + " has connected."); //That message is shown at client's chat box. 
                                                      //So there is no problem with the connection.

        UpdateListbox(un_list, R.Name, false); //Here is the problem. It works when I comment out them, 
                                               //without updating the list boxes of course
        UpdateListbox(ip_list, R.Ip, false);
    }

客户端连接时。

        private void server_OnClientDisconnected(object Sender, DisconnectedArguments R)
    {
        server.BroadCast(R.Name + " has disconnected.");

        UpdateListbox(un_list,R.Name,true);
        UpdateListbox(ip_list, R.Ip, true);

    }

客户端断开连接时。

我的方法:

    public delegate void UpdateList(ListBox box,object value,bool Remove);


    private void UpdateListbox(ListBox box, object value, bool Remove)
    {
        if (box.Dispatcher.CheckAccess())
        {
            if (value != null && Remove==false)
                box.Items.Add(value);
            else if (value != null && Remove==true)
                box.Items.Remove(value);

        }
        else
        {
            box.Dispatcher.Invoke(new UpdateList(UpdateListbox), value);
        }

    }

提前致谢,乔治

1 个答案:

答案 0 :(得分:1)

您忘记传递bool Remove参数。将您的行更改为:

box.Dispatcher.Invoke(new UpdateList(UpdateListbox), new object[]{box, value, Remove});

或者,如果您希望将来避免犯同样的错误,可以将lambdas与this overload一起使用:

box.Dispatcher.Invoke(() => UpdateListBox(box, value, Remove));

如果你忘记了那里的Remove参数,你会收到一个编译时错误。