C# 클래스 Yaircc.Net.IRC.TopicMessage

Represents a TOPIC command.
상속: Message
파일 보기 프로젝트 열기: rastating/yaircc

공개 메소드들

메소드 설명
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.

메소드 상세

TopicMessage() 공개 메소드

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

TopicMessage() 공개 메소드

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

TopicMessage() 공개 메소드

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.
리턴 System.Text.RegularExpressions

TryParse() 공개 메소드

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