Subject: Is user logged question?
in new version 0.71. can be stated this asumption...
user is logged only if one of this two is true. Can somebody confirm me that?
thx
- public bool IsLogged()
- {
- if (XmppCon == null)
- return true;
- return ((XmppCon.Authenticated && XmppCon.XmppConnectionState == XmppConnectionState.Connected)
- || (XmppCon.RegisterAccount && XmppCon.XmppConnectionState == XmppConnectionState.Registered));
- }
user is logged only if one of this two is true. Can somebody confirm me that?
thx
Preky
This post was edited on 2006-02-17, 22:00 by Alex.