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

Наследование: System.Exception
Показать файл Открыть проект

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

Метод Описание
InvalidLineFormatException ( string line ) : System

Initializes a new instance of the InvalidLineFormatException class.

InvalidLineFormatException ( string msg, string line ) : System

Initializes a new instance of the InvalidLineFormatException class with the given message.

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

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

Initializes a new instance of the InvalidLineFormatException class.
public InvalidLineFormatException ( string line ) : System
line string /// The raw string, what couldn't be parsed as a raw irc line. ///
Результат System

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

Initializes a new instance of the InvalidLineFormatException class with the given message.
public InvalidLineFormatException ( string msg, string line ) : System
msg string /// The message of this exception. ///
line string /// The part of or a complete raw string, what couldn't be parsed as a raw irc line. ///
Результат System