|
MessengerYouLike
|
|
When Logged in user is Logged out
public event OnLoggedOut;
Public Event OnLoggedOut(ByVal Username As String, ByVal Time As String)
When user is logged out by calling the sub IMSDK.IMClient.BeginLogOut
after this event you can call sub IMSDK.IMClient.StopListening or when the application it self closes
[Visual Basic]
Private Sub MC_OnLoggedOut(ByVal Username As String, ByVal Time As String) Handles MC.OnLoggedOut
Debug.WriteLine("On Logged Out")
MC.StopListening()
End Sub