C# Class Yaircc.Net.IRC.WhoisMessage

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

Public Methods

Method Description
TryParse ( string input ) : ParseResult

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

WhoisMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the WhoisMessage class.

WhoisMessage ( string nickmask ) : System.Text.RegularExpressions

Initialises a new instance of the WhoisMessage class.

WhoisMessage ( string server, string nickmask ) : System.Text.RegularExpressions

Initialises a new instance of the WhoisMessage class.

Method Details

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

WhoisMessage() public method

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

WhoisMessage() public method

Initialises a new instance of the WhoisMessage class.
public WhoisMessage ( string nickmask ) : System.Text.RegularExpressions
nickmask string The nick mask to retrieve information about.
return System.Text.RegularExpressions

WhoisMessage() public method

Initialises a new instance of the WhoisMessage class.
public WhoisMessage ( string server, string nickmask ) : System.Text.RegularExpressions
server string The server in which the user(s) reside on.
nickmask string The nick mask to retrieve information about.
return System.Text.RegularExpressions