C# Класс Yaircc.Net.IRC.KickMessage

Represents a KICK command.
Наследование: Message
Показать файл Открыть проект

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

Метод Описание
KickMessage ( ) : System

Initialises a new instance of the KickMessage class.

KickMessage ( string channel, string nickname ) : System

Initialises a new instance of the KickMessage class.

KickMessage ( string channel, string nickname, string reason ) : System

Initialises a new instance of the KickMessage class.

TryParse ( string input ) : ParseResult

Attempts to parse the input specified by the user into the Message.

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

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

Initialises a new instance of the KickMessage class.
public KickMessage ( ) : System
Результат System

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

Initialises a new instance of the KickMessage class.
public KickMessage ( string channel, string nickname ) : System
channel string The channel in which the user to be kicked is in.
nickname string The nick name of the user to be kicked.
Результат System

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

Initialises a new instance of the KickMessage class.
public KickMessage ( string channel, string nickname, string reason ) : System
channel string The channel in which the user to be kicked is in.
nickname string The nick name of the user to be kicked.
reason string The reason for kicking the user.
Результат System

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

Attempts to parse the input specified by the user into the Message.
public TryParse ( string input ) : ParseResult
input string The input from the user.
Результат ParseResult