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

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

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

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

Initialises a new instance of the PrivMsgMessage class.

PrivMsgMessage ( string receiver, string message ) : System

Initialises a new instance of the PrivMsgMessage class.

TryParse ( string input ) : ParseResult

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

Приватные методы

Метод Описание
ParseActionMessage ( string payload ) : ParseResult

Parse an action message.

ParsePrivateMessage ( string payload ) : ParseResult

Parse a private message.

ParseRegularMessage ( string payload ) : ParseResult

Parse a standard message.

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

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

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

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

Initialises a new instance of the PrivMsgMessage class.
public PrivMsgMessage ( string receiver, string message ) : System
receiver string The recipient of the message.
message string The message.
Результат 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