|
MessengerYouLike
|
|
When value set by property IMSDK.IMClient.MAXFriends exceeds
public event OnTotalNumberOfFriendsExceeds;
Public Event OnTotalNumberOfFriendsExceeds(ByVal FriendUsername As String)
|
Return Values |
Description |
|
ByVal FriendUsername As String |
this is the username of friend that could not be added as no more friends could be added because of the property IMSDK.IMClient.MAXFriends |
This event is fired when more friends are added as set by the property IMSDK.IMClient.MAXFriends
[Visual Basic]
Private Sub MC_OnTotalNumberOfFriendsExceeds(ByVal FriendUsername As String) Handles MC.OnTotalNumberOfFriendsExceeds
Debug.WriteLine("On Total Number Of Friends Exceeds : " & FriendUsername)
End Sub