C# 클래스 apophis.SharpIRC.IrcClient.IrcMessageData

파일 보기 프로젝트 열기: FreeApophis/sharpIRC 1 사용 예제들

공개 메소드들

메소드 설명
IrcMessageData ( IrcClient ircClient, string rawMessage ) : System

Constructor to create an instace of IrcMessageData

IrcMessageData ( IrcClient ircclient, string from, string nick, string ident, string host, string channel, string message, string rawmessage, ReceiveType type, ReplyCode replycode ) : System

Constructor to create an instace of IrcMessageData

ToString ( ) : string

비공개 메소드들

메소드 설명
ParseLegacyInfo ( ) : void

메소드 상세

IrcMessageData() 공개 메소드

Constructor to create an instace of IrcMessageData
public IrcMessageData ( IrcClient ircClient, string rawMessage ) : System
ircClient IrcClient IrcClient the message originated from
rawMessage string message as it appears on wire, stripped of newline
리턴 System

IrcMessageData() 공개 메소드

Constructor to create an instace of IrcMessageData
public IrcMessageData ( IrcClient ircclient, string from, string nick, string ident, string host, string channel, string message, string rawmessage, ReceiveType type, ReplyCode replycode ) : System
ircclient IrcClient IrcClient the message originated from
from string combined nickname, identity and host of the user that sent the message (nick!ident@host)
nick string nickname of the user that sent the message
ident string identity (username) of the userthat sent the message
host string hostname of the user that sent the message
channel string channel the message originated from
message string message
rawmessage string raw message sent by the server
type ReceiveType message type
replycode ReplyCode message reply code
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string