|
MessengerYouLike
|
|
when IMSDK.IMClient.Status of the Friend is changed
public event OnFriendStatusChanged;
Public Event OnFriendStatusChanged(ByVal FriendUsername As String, ByVal FriendStatus As IMClient.Status)
When a Contacts calls a sub IMSDK.IMClient.BeginSetUserStatus then all Online Friends will be notified of that new status via this event
[Visual Basic] Private Sub MC_OnFriendStatusChanged(ByVal FriendUsername As String, ByVal FriendStatus As IMSDK.IMClient.Status) Handles MC.OnFriendStatusChanged Debug.WriteLine(FriendUsername & " Status is now " & FriendStatus) End Sub