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

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

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

Метод Описание
TopicMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the TopicMessage class.

TopicMessage ( string channel ) : System.Text.RegularExpressions

Initialises a new instance of the TopicMessage class.

TopicMessage ( string channel, string topic ) : System.Text.RegularExpressions

Initialises a new instance of the TopicMessage class.

TryParse ( string input ) : ParseResult

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

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

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

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

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

Initialises a new instance of the TopicMessage class.
public TopicMessage ( string channel ) : System.Text.RegularExpressions
channel string The channel to retrieve the topic of.
Результат System.Text.RegularExpressions

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

Initialises a new instance of the TopicMessage class.
public TopicMessage ( string channel, string topic ) : System.Text.RegularExpressions
channel string The channel to set the topic of.
topic string The new topic.
Результат System.Text.RegularExpressions

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