C# Class Yaircc.Net.IRC.TopicMessage

Represents a TOPIC command.
Inheritance: Message
Afficher le fichier Open project: rastating/yaircc

Méthodes publiques

Méthode 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 méthode

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

TopicMessage() public méthode

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

TopicMessage() public méthode

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.
Résultat System.Text.RegularExpressions

TryParse() public méthode

Attempts to parse the input specified by the user into the Message.
public TryParse ( string input ) : ParseResult
input string The input from the user.
Résultat ParseResult