agsXMPP.XmppComponentConnection.CleanupSession C# (CSharp) Method

CleanupSession() private method

private CleanupSession ( ) : void
return void
		private void CleanupSession()
		{
            // This cleanup has only to be done if we were able to connect and teh XMPP Stream was started
            DestroyKeepAliveTimer();			
			m_CleanUpDone = true;
			StreamParser.Reset();
            
			if (OnClose!=null)
				OnClose(this);
		}
	}