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

Represents the result of attempting to parse an IRC message.
상속: ParseResult, IAssimilable
파일 보기 프로젝트 열기: rastating/yaircc 1 사용 예제들

공개 메소드들

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

메소드 상세

Assimilate() 공개 메소드

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

MessageParseResult() 공개 메소드

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.