OnSessionException() 개인적인 메소드

private OnSessionException ( Session sender, Exception exception ) : void
sender Session
exception System.Exception
리턴 void
예제 #1
0
 private void dispatchingThread_ExceptionListener(Exception exception)
 {
     if (null != Connection)
     {
         try
         {
             Connection.OnSessionException(this, exception);
         }
         catch
         {
         }
     }
 }