System.dll中出现未处理的“System.UriFormatException”类型异常

时间:2014-02-09 19:04:44

标签: c#

我正在尝试编写连接到聊天室的微型机器人。

这是我的连接代码。

private void _buttonConnect_Click(object sender, EventArgs e)
{
    string[] TCargs = new string[] { _textBoxApplication.Text, "none", "show", "tinychat" };

    // Connect to the server.
    string url = "rtmp://" + _textBoxServer.Text + ":" + System.Convert.ToInt32(_textBoxPort.Text) + "/" + "tinyconf";

    _netConnection.Connect("rtmp://" + _textBoxServer + ":" + _textBoxPort.Text + "/" + "tinyconf" + TCargs);
    //_netConnection.Connect(url, "user", "password");
}

点击连接按钮时出现此错误:

  

System.dll

中发生了'System.UriFormatException'类型的未处理异常

它没有连接或任何东西。

0 个答案:

没有答案