C# Class Yaircc.Net.IRC.OperMessage

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

Public Methods

Method Description
OperMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the OperMessage class.

OperMessage ( string user, string password ) : System.Text.RegularExpressions

Initialises a new instance of the OperMessage class.

TryParse ( string input ) : ParseResult

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

Method Details

OperMessage() public method

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

OperMessage() public method

Initialises a new instance of the OperMessage class.
public OperMessage ( string user, string password ) : System.Text.RegularExpressions
user string The username.
password string The password.
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