C# Class Yaircc.Net.IRC.MessageParseResult

Represents the result of attempting to parse an IRC message.
Inheritance: ParseResult, IAssimilable
ファイルを表示 Open project: rastating/yaircc Class Usage Examples

Public Methods

Method Description
Assimilate ( object obj ) : void

Assimilate all the data stored in obj

MessageParseResult ( bool success, string message, Message ircMessage )

Initialises a new instance of the MessageParseResult class.

Method Details

Assimilate() public method

Assimilate all the data stored in obj
public Assimilate ( object obj ) : void
obj object The object in which to assimilate data from
return void

MessageParseResult() public method

Initialises a new instance of the MessageParseResult class.
public MessageParseResult ( bool success, string message, Message ircMessage )
success bool A value indicating whether or not the operation was success.
message string A summary of the operation.
ircMessage Message The processed message.