The current user's Buddy Variables.
This is an associative array containing the current user's properties when he/she is present in the buddy lists of other users.
See the SetBuddyVariables(Hashtable) method for more details.
This is an associative array containing the current user's properties when he/she is present in the buddy lists of other users.
See the SetBuddyVariables(Hashtable) method for more details.
Version:
SmartFoxServer Basic (except block status) / Pro
Since:
SmartFoxServer Pro v1.6.0
The following example shows how to read the current user's own Buddy Variables.
CopyC#
foreach (string v in smartFox.myBuddyVars.Keys) Trace.WriteLine("Variable " + v + " -- " + smartFox.myBuddyVars[v]);