Subject: SubscriptionType problem
I found the following
I suppose this should be none?
I changed the code to:
This type came to me from the Wildfire server when he send me the "welcome " messages uppon a new acount creation.
Is this the way to handle that situation or not?
Thanks !
public enum SubscriptionType
{
none,
to,
from,
both,
remove
}
althought i am not sure about this, what is the SubscriptionType when there is not such a field in the RosterItem element?{
none,
to,
from,
both,
remove
}
I suppose this should be none?
I changed the code to:
public enum SubscriptionType
{
none=-1,
to,
from,
both,
remove
}
to work normally.{
none=-1,
to,
from,
both,
remove
}
This type came to me from the Wildfire server when he send me the "welcome " messages uppon a new acount creation.
Is this the way to handle that situation or not?
Thanks !