C# Class Yaircc.Net.IRC.AwayMessage

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

Public Methods

Method Description
AwayMessage ( ) : System

Initialises a new instance of the Yaircc.Net.IRC.AwayMessage class.

AwayMessage ( string message ) : System

Initialises a new instance of the Yaircc.Net.IRC.AwayMessage class.

TryParse ( string input ) : ParseResult

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

Method Details

AwayMessage() public method

Initialises a new instance of the Yaircc.Net.IRC.AwayMessage class.
public AwayMessage ( ) : System
return System

AwayMessage() public method

Initialises a new instance of the Yaircc.Net.IRC.AwayMessage class.
public AwayMessage ( string message ) : System
message string The message to be sent when messaged by other users.
return System

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