The current user's Buddy Variables.
This is a dictionary containing the current user's properties when he/she is present in the buddy lists of other users.
See the SetBuddyVariables(Dictionary<(Of <(String, Object>)>)) method for more details.
This is a dictionary containing the current user's properties when he/she is present in the buddy lists of other users.
See the SetBuddyVariables(Dictionary<(Of <(String, Object>)>)) method for more details.

C# | Visual Basic | Visual C++ |
public Dictionary<string, Object> myBuddyVars
Public myBuddyVars As Dictionary(Of String, Object)
public: Dictionary<String^, Object^>^ myBuddyVars

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) Debug.WriteLine("Variable " + v + " -- " + smartFox.myBuddyVars[v]);
