C# Class Yaircc.Net.IRC.TopicMessage

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

Public Methods

Method Description
TopicMessage ( ) : System.Text.RegularExpressions

Initialises a new instance of the TopicMessage class.

TopicMessage ( string channel ) : System.Text.RegularExpressions

Initialises a new instance of the TopicMessage class.

TopicMessage ( string channel, string topic ) : System.Text.RegularExpressions

Initialises a new instance of the TopicMessage class.

TryParse ( string input ) : ParseResult

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

Method Details

TopicMessage() public method

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

TopicMessage() public method

Initialises a new instance of the TopicMessage class.
public TopicMessage ( string channel ) : System.Text.RegularExpressions
channel string The channel to retrieve the topic of.
return System.Text.RegularExpressions

TopicMessage() public method

Initialises a new instance of the TopicMessage class.
public TopicMessage ( string channel, string topic ) : System.Text.RegularExpressions
channel string The channel to set the topic of.
topic string The new topic.
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