C# Class Yaircc.Net.IRC.StatsMessage

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

Public Methods

Method Description
StatsMessage ( )

Initialises a new instance of the StatsMessage class.

StatsMessage ( string query )

Initialises a new instance of the StatsMessage class.

StatsMessage ( string query, string server )

Initialises a new instance of the StatsMessage class.

TryParse ( string input ) : ParseResult

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

Method Details

StatsMessage() public method

Initialises a new instance of the StatsMessage class.
public StatsMessage ( )

StatsMessage() public method

Initialises a new instance of the StatsMessage class.
public StatsMessage ( string query )
query string The query to execute.

StatsMessage() public method

Initialises a new instance of the StatsMessage class.
public StatsMessage ( string query, string server )
query string The query to execute.
server string The server to execute the query against.

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