UserPartedNotify() private method

private UserPartedNotify ( IrcUser user, string reason ) : void
user IrcUser
reason string
return void
コード例 #1
0
ファイル: IrcClient.cs プロジェクト: WCell/WCell-UtilityBot
 internal void PartNotify(IrcUser user, IrcChannel chan, string reason)
 {
     OnPart(user, chan, reason);
     chan.UserPartedNotify(user, reason);
     user.DeleteChannel(chan.Name);
     CheckUserKnown(user);
 }
コード例 #2
0
 internal void PartNotify(IrcUser user, IrcChannel chan, string reason)
 {
     OnPart(user, chan, reason);
     chan.UserPartedNotify(user, reason);
     user.DeleteChannel(chan.Name);
     CheckUserKnown(user);
 }