agsXMPP.IqGrabber.Remove C# (CSharp) Method

Remove() public method

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 ( string id ) : void
id string ID of the Iq we are not interested anymore
return void
		public void Remove(string id)
		{
			if(m_grabbing.ContainsKey(id))
				m_grabbing.Remove(id);
		}