C# 클래스 Yaircc.Net.IRC.PrivMsgMessage

Represents a PRIVMSG command.
상속: Message
파일 보기 프로젝트 열기: rastating/yaircc

공개 메소드들

메소드 설명
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