C# Class Yaircc.Net.IRC.NamesMessage

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

Public Methods

Method Description
NamesMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the NamesMessage class.

NamesMessage ( string channel ) : System.Text.RegularExpressions

Initialises a new instance of the NamesMessage class.

TryParse ( string input ) : ParseResult

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

Method Details

NamesMessage() public method

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

NamesMessage() public method

Initialises a new instance of the NamesMessage class.
public NamesMessage ( string channel ) : System.Text.RegularExpressions
channel string The channel to retrieve the names list from.
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