Smuxi.Engine.XmppProtocolManager.FindGroupChatsDiscoItems C# (CSharp) Method

FindGroupChatsDiscoItems() private method

private FindGroupChatsDiscoItems ( agsXMPP.protocol.client.IQEventArgs e, AutoResetEvent reset ) : void
e agsXMPP.protocol.client.IQEventArgs
reset System.Threading.AutoResetEvent
return void
        void FindGroupChatsDiscoItems(IQEventArgs e, AutoResetEvent reset)
        {
            if (e.IQ.Error == null) {
                lock (this) {
                    ServerDiscoItems = (DiscoItems)e.IQ.Query;
                }
            }
            e.Handled = true;
            reset.Set();
        }