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

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

공개 메소드들

메소드 설명
NoticeMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the NoticeMessage class.

NoticeMessage ( string nickname, string message ) : System.Text.RegularExpressions

Initialises a new instance of the NoticeMessage class.

TryParse ( string input ) : ParseResult

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

메소드 상세

NoticeMessage() 공개 메소드

Initialises a new instance of the NoticeMessage class.
public NoticeMessage ( ) : System.Text.RegularExpressions
리턴 System.Text.RegularExpressions

NoticeMessage() 공개 메소드

Initialises a new instance of the NoticeMessage class.
public NoticeMessage ( string nickname, string message ) : System.Text.RegularExpressions
nickname string The nick name of the user to send a notice to.
message string The content of the notice.
리턴 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