コード例 #1
0
ファイル: Program.cs プロジェクト: BGCX261/ziveirc-svn-to-git
 private void ConnectionAttemptStarted( object sender, ConnectionAttemptStartedEventArgs ev ) {
     Console.WriteLine( "ConsoleHarness: ConnectionAttemptStarted:" );
     Console.WriteLine( "+ remote end point: {0}", ev.SslEndPoint );
     Console.WriteLine( );
 }
コード例 #2
0
 private void ConnectionAttemptStarted( object sender, ConnectionAttemptStartedEventArgs ev )
 {
     Debug.Print( "NetworkWrapper.ConnectionAttemptStarted" );
     Debug.Print( "+ remote end point: {0}", ev.SslEndPoint );
     if ( !_haveRaisedStartedEvent ) {
         _haveRaisedStartedEvent = true;
         OnConnectAttemptStarted( );
     }
 }