agsXMPP.PacketGrabber.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
		public void Clear()
		{
			// need locking here to make sure that we dont acces the Hashtable
			// from another thread
			lock(this)
			{
				m_grabbing.Clear();
			}
		}
	}