コード例 #1
0
ファイル: IrcConnection.cs プロジェクト: dellis1972/dotRant
 private void OnUnhandledException(IrcException exception)
 {
     if (UnhandledException != null)
     {
         UnhandledException(this, new ExceptionEventArgs(exception));
     }
 }
コード例 #2
0
 public ExceptionEventArgs(IrcException exception)
 {
     _exception = exception;
 }