到底是怎麼回事?僅僅發生在我的機器上,修改了ip配置後放到別的機器上是沒有任何問題的,可以很好的回調。難道我的機器有何異常?請教高手了!
某一線程下socket對象user.sock開始執行BeginReceive語句:
user.sock.BeginReceive(user.buffer,0,User.BufferSize,0,new System.AsyncCallback(DoRecevive),user);
對應的回調函數:
public static void DoRecevive(IAsyncResult ar)
{
Console.WriteLine("Begin Receive Date, Waiting for the Call Back");
//...
}
在我的機器上BeginReceive之後不執行DoRecevive函數,在別的機器上可以很好的執行該函數並且
打出“Begin Receive Date, Waiting for the Call Back”字符串