Squishy.Irc.IrcClient.UserLeftChannelNotify C# (CSharp) Method

UserLeftChannelNotify() private method

private UserLeftChannelNotify ( IrcChannel chan, IrcUser user, string reason ) : void
chan IrcChannel
user IrcUser
reason string
return void
        internal void UserLeftChannelNotify(IrcChannel chan, IrcUser user, string reason)
        {
            OnUserLeftChannel(chan, user, reason);
        }

Usage Example

Example #1
0
 internal void UserLeftNotify(IrcUser user, string reason)
 {
     m_irc.UserLeftChannelNotify(this, user, reason);
     if (UserLeft != null)
     {
         UserLeft(user, reason);
     }
     DeleteUser(user);
 }