C# Class Yaircc.Net.IRC.WhowasMessage

Represents a WHOWAS 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.

WhowasMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the WhowasMessage class.

WhowasMessage ( string nickname ) : System.Text.RegularExpressions

Initialises a new instance of the WhowasMessage class.

WhowasMessage ( string nickname, string count ) : System.Text.RegularExpressions

Initialises a new instance of the WhowasMessage class.

WhowasMessage ( string nickname, string count, string server ) : System.Text.RegularExpressions

Initialises a new instance of the WhowasMessage 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

WhowasMessage() public method

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

WhowasMessage() public method

Initialises a new instance of the WhowasMessage class.
public WhowasMessage ( string nickname ) : System.Text.RegularExpressions
nickname string The nick name to get the who was information of.
return System.Text.RegularExpressions

WhowasMessage() public method

Initialises a new instance of the WhowasMessage class.
public WhowasMessage ( string nickname, string count ) : System.Text.RegularExpressions
nickname string The nick name to get the who was information of.
count string The maximum number of uses to show.
return System.Text.RegularExpressions

WhowasMessage() public method

Initialises a new instance of the WhowasMessage class.
public WhowasMessage ( string nickname, string count, string server ) : System.Text.RegularExpressions
nickname string The nick name to get the who was information of.
count string The maximum number of uses to show.
server string The server in which the nick name was used.
return System.Text.RegularExpressions