void ReceiveCompleted()
 {
     pendingIncomingDataNotifierState.SetValue(RUNNING, NOTRUNNING);
     if (isConnectDone())
     {
         wakeupCnxn();
     }
 }
示例#2
0
 void ReceiveCompleted()
 {
     pendingIncomingDataNotifierState.SetValue(RUNNING, NOTRUNNING);
     wakeupCnxn();
 }
示例#3
0
 void ConnectAsyncCompleted(object sender, SocketAsyncEventArgs eventArgs)
 {
     connectingState.SetValue(CONNECTING, PENDINGCONNECTASYNC);
     wakeupCnxn();
 }