C# Class Yaircc.Net.IRC.PingMessage

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

Public Methods

Method Description
PingMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the PingMessage class.

PingMessage ( string nickname ) : System.Text.RegularExpressions

Initialises a new instance of the PingMessage class.

TryParse ( string input ) : ParseResult

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

Method Details

PingMessage() public method

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

PingMessage() public method

Initialises a new instance of the PingMessage class.
public PingMessage ( string nickname ) : System.Text.RegularExpressions
nickname string The nick name of the user to ping.
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