Dispatched when an error occurs while loading the buddy list.


- error (String)
- the error message

Version:
SmartFoxServer Basic / Pro

The following example shows how to handle a potential error in buddy list loading.
CopyC#

SFSEvent.onBuddyListError += OnBuddyListError; public void OnBuddyListError(string error) { Debug.WriteLine("An error occurred while loading the buddy list: " + error); }
