agsXMPP.MessageGrabber.Remove C# (CSharp) 메소드

Remove() 공개 메소드

Pending request can be removed. This is useful when a ressource for the callback is destroyed and we are not interested anymore at the result.
public Remove ( Jid jid ) : void
jid Jid
리턴 void
		public void Remove(Jid jid)
		{
            lock (m_grabbing)
            {
                if (m_grabbing.ContainsKey(jid.ToString()))
                    m_grabbing.Remove(jid.ToString());
            }
		}