C# Class Yaircc.Net.IRC.LinksMessage

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

Public Methods

Method Description
LinksMessage ( ) : System

Initialises a new instance of the LinksMessage class.

LinksMessage ( string serverMask ) : System

Initialises a new instance of the LinksMessage class.

LinksMessage ( string remoteServer, string serverMask ) : System

Initialises a new instance of the LinksMessage class.

TryParse ( string input ) : ParseResult

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

Method Details

LinksMessage() public method

Initialises a new instance of the LinksMessage class.
public LinksMessage ( ) : System
return System

LinksMessage() public method

Initialises a new instance of the LinksMessage class.
public LinksMessage ( string serverMask ) : System
serverMask string The server mask to use.
return System

LinksMessage() public method

Initialises a new instance of the LinksMessage class.
public LinksMessage ( string remoteServer, string serverMask ) : System
remoteServer string The remote server to get the links from.
serverMask string The server mask to use.
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