C# Класс IrcShark.Chatting.Irc.ErrorEventArgs

The ErrorEventArgs belongs to the IrcClient.ErrorEventHandler and the IrcClient.Error event.
Наследование: IrcEventArgs
Показать файл Открыть проект

Открытые методы

Метод Описание
ErrorEventArgs ( IrcClient client, string msg ) : System

Initializes a new instance of the ErrorEventArgs class.

ErrorEventArgs ( IrcClient client, string msg, Exception exception ) : System

Initializes a new instance of the ErrorEventArgs class.

Описание методов

ErrorEventArgs() публичный Метод

Initializes a new instance of the ErrorEventArgs class.
public ErrorEventArgs ( IrcClient client, string msg ) : System
client IrcClient The client, the error happens on.
msg string The related error message.
Результат System

ErrorEventArgs() публичный Метод

Initializes a new instance of the ErrorEventArgs class.
public ErrorEventArgs ( IrcClient client, string msg, Exception exception ) : System
client IrcClient The client, the error happens on.
msg string The related error message.
exception System.Exception The inner exception, that caused the error.
Результат System