Метод | Описание | |
---|---|---|
Assimilate ( object obj ) : void |
Assimilate all the data stored in obj
|
|
Message ( ) : System |
Initialises a new instance of the Yaircc.Net.IRC.Message class.
|
|
Message ( string command ) : System |
Initialises a new instance of the Yaircc.Net.IRC.Message class.
|
|
Message ( string command, string parameters ) : System |
Initialises a new instance of the Yaircc.Net.IRC.Message class.
|
|
Message ( string prefix, string command, string parameters, string trailingParameter ) : System |
Initialises a new instance of the Yaircc.Net.IRC.Message class.
|
|
ParseMessage ( string message ) : |
Parses a text based message into a Yaircc.Net.IRC.Message.
|
|
ToString ( ) : string |
Outputs the message as a string.
|
|
ToString ( string format ) : string |
Returns the message using the format specified.
|
|
ToString ( string format, string parameterDelimiter, bool removeFirstParameter ) : string |
Returns the message using the format specified.
|
|
TryParse ( string input ) : |
Attempts to parse the input specified by the user into the Message.
|
public Assimilate ( object obj ) : void | ||
obj | object | The object in which to assimilate data from |
Результат | void |
public Message ( string command ) : System | ||
command | string | The command the message represents. |
Результат | System |
public Message ( string command, string parameters ) : System | ||
command | string | The command the message represents. |
parameters | string | The parameters of the command. |
Результат | System |
public Message ( string prefix, string command, string parameters, string trailingParameter ) : System | ||
prefix | string | The prefix of the message. |
command | string | The command the message represents. |
parameters | string | The parameters of the command. |
trailingParameter | string | The trailing parameter of the command. |
Результат | System |
public static ParseMessage ( string message ) : |
||
message | string | A string that meets the RFC 1459 or 2812 standard. |
Результат |
public ToString ( string format ) : string | ||
format | string | The format to use.
/// |
Результат | string |
public ToString ( string format, string parameterDelimiter, bool removeFirstParameter ) : string | ||
format | string | The format to use.
/// |
parameterDelimiter | string | The delimiter that will separate the parameter list. |
removeFirstParameter | bool | A value that indicates whether or not to remove the first parameter from the input. |
Результат | string |
public TryParse ( string input ) : |
||
input | string | The input from the user. |
Результат |