OnSessionException() private method

private OnSessionException ( Session sender, Exception exception ) : void
sender Session
exception System.Exception
return void
Exemplo n.º 1
0
 private void dispatchingThread_ExceptionListener(Exception exception)
 {
     if (null != Connection)
     {
         try
         {
             Connection.OnSessionException(this, exception);
         }
         catch
         {
         }
     }
 }