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

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

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

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

Initialises a new instance of the KnockMessage class.

KnockMessage ( string channel ) : System

Initialises a new instance of the KnockMessage class.

KnockMessage ( string channel, string message ) : System

Initialises a new instance of the KnockMessage class.

TryParse ( string input ) : ParseResult

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

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

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

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

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

Initialises a new instance of the KnockMessage class.
public KnockMessage ( string channel ) : System
channel string The channel to send the knock command to.
Результат System

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

Initialises a new instance of the KnockMessage class.
public KnockMessage ( string channel, string message ) : System
channel string The channel to send the knock command to.
message string The message to be shown with the knock.
Результат 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