Schumix.Irc.IrcBase.IrcRemoveHandler C# (CSharp) Method

IrcRemoveHandler() public method

public IrcRemoveHandler ( ReplyCode code ) : void
code ReplyCode
return void
        public void IrcRemoveHandler(ReplyCode code)
        {
            lock(Lock)
            {
                foreach(var nw in _networks)
                    nw.Value.IrcRemoveHandler(code);
            }
        }

Same methods

IrcBase::IrcRemoveHandler ( ReplyCode code, IRCDelegate method ) : void
IrcBase::IrcRemoveHandler ( int code ) : void
IrcBase::IrcRemoveHandler ( int code, IRCDelegate method ) : void
IrcBase::IrcRemoveHandler ( string code ) : void
IrcBase::IrcRemoveHandler ( string code, IRCDelegate method ) : void