当远程打开时,Socket Pending()方法不一致

时间:2013-02-05 07:56:46

标签: c# asp.net sockets

我们有Web应用程序,它作为Socket Listner工作。我想在AcceptSocket之前检查,是否有任何Client Socket可用于连接到此侦听器。如果没有要连接的客户端套接字并取消发送/接收数据,我想显示一条消息。

对于这个问题,我使用了Pemp Method of TcpListener类,但这部分对我有用。

如果遥控器不可用,则效果很好,返回false。但是当远程可用时,有时Pending()方法返回false。当远程可用时,我希望它返回true。

这是我的代码:     public bool Communicationcation()     {

    string strSiteID = "SiteID";
    socket.Start();

   if(!socket.Pending())
    {
        Console.WriteLine("Sorry, no connection requests have arrived");
        return false;

    }
    else
    {
        client = socket.AcceptSocket();


        if (client.Connected == true)
        {
            // int nSiteID =  int.Parse(ConfigurationSettings.AppSettings.Get("SiteID"));
            object dSiteID = GetSiteSetting(ref strSiteID);
            IPEndPoint clientep = (IPEndPoint)client.RemoteEndPoint;
            WriteLog(string.Format("Connected with {0} at port {1}", clientep.Address, clientep.Port));
            string strWelcome = STARTMESSAGE + "WHOAMI" + "     " + dSiteID + " " + dSiteID + FINISHMESSAGE;
            byte[] data = new byte[1024];
            data = Encoding.ASCII.GetBytes(strWelcome);
            int i = client.Send(data, data.Length, SocketFlags.None);
            WriteLog(String.Format("Message sent {0} bytes!", i));
            //Get reply from the Connected cleint.
            byte[] bytes = new byte[1024];
            i = client.Receive(bytes, bytes.Length, SocketFlags.None);
            if (i != -1)
            {
                WriteLog(string.Format(System.Text.Encoding.UTF8.GetString(bytes)));
            }
        }
        return true;
    }
}

TcpListener类Pending方法在Remote运行时始终返回false。如果我们在没有debug的情况下运行代码。但是当我们调试代码时,Pending方法不一致并且返回一些时间为false并且有时间为真。

0 个答案:

没有答案