C# Class Yaircc.Net.IRC.NoticeMessage

Represents a NOTICE command.
Inheritance: Message
ファイルを表示 Open project: rastating/yaircc

Public Methods

Method Description
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.

Method Details

NoticeMessage() public method

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

NoticeMessage() public method

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.
return System.Text.RegularExpressions

TryParse() public method

Attempts to parse the input specified by the user into the Message.
public TryParse ( string input ) : ParseResult
input string The input from the user.
return ParseResult