C# Class Yaircc.Net.IRC.PongMessage

Represents a PONG command.
Inheritance: Message
ファイルを表示 Open project: rastating/yaircc Class Usage Examples

Public Methods

Method Description
PongMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the PongMessage class.

PongMessage ( string daemon ) : System.Text.RegularExpressions

Initialises a new instance of the PongMessage class.

TryParse ( string input ) : ParseResult

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

Method Details

PongMessage() public method

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

PongMessage() public method

Initialises a new instance of the PongMessage class.
public PongMessage ( string daemon ) : System.Text.RegularExpressions
daemon string The daemon to use.
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