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