MsgReceivedNotify() private method

private MsgReceivedNotify ( IrcUser user, StringStream text ) : void
user IrcUser
text StringStream
return void
コード例 #1
0
 internal void ChannelMsgNotify(IrcUser user, IrcChannel chan, StringStream text)
 {
     chan.MsgReceivedNotify(user, text);
     OnChannelMsg(user, chan, text);
 }
コード例 #2
0
ファイル: IrcClient.cs プロジェクト: WCell/WCell-UtilityBot
 internal void ChannelMsgNotify(IrcUser user, IrcChannel chan, StringStream text)
 {
     chan.MsgReceivedNotify(user, text);
     OnChannelMsg(user, chan, text);
 }