private void HandleConnectionAttemptStarted(object sender, ConnectionAttemptStartedEventArgs ev)
 {
     Debug.Print("ServerWrapper.HandleConnectionAttemptStarted");
     Debug.Print("+ remote end point: {0}", ev.SslEndPoint);
     if (!_haveRaisedStartedEvent)
     {
         _haveRaisedStartedEvent = true;
         OnConnectStarted( );
     }
 }
示例#2
0
 private void ConnectionAttemptStarted(object sender, ConnectionAttemptStartedEventArgs ev)
 {
     Console.WriteLine("ConsoleHarness: ConnectionAttemptStarted:");
     Console.WriteLine("+ remote end point: {0}", ev.SslEndPoint);
     Console.WriteLine( );
 }