Inheritance: IrcEventArgs
コード例 #1
0
 internal void HandleOnError(object sender, ErrorEventArgs e)
 {
     if (OnError != null)
         OnError(this, e);
 }
コード例 #2
0
ファイル: Example.cs プロジェクト: FreeApophis/sharpIRC
 // this method handles when we receive "ERROR" from the IRC server
 public static void OnError(object sender, ErrorEventArgs e)
 {
     Console.WriteLine("Error: " + e.ErrorMessage);
     Exit();
 }
コード例 #3
0
 public void PluginsOnError(object sender, ErrorEventArgs e)
 {
     OnError(this, e);
 }