C# Class Yaircc.Net.IRC.NoticeMessage

Represents a NOTICE command.
Inheritance: Message
Afficher le fichier Open project: rastating/yaircc

Méthodes publiques

Méthode 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 méthode

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

NoticeMessage() public méthode

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.
Résultat System.Text.RegularExpressions

TryParse() public méthode

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