|
MessengerYouLike
|
|
When Message is Not Successfully sent to the Online IMClient by the server
public event OnMessageNotSent;
Public Event OnMessageNotSent(ByVal Friendusername As String, ByVal Message As String)
|
Return Values |
Description |
|
ByVal Friendusername As String |
Username of friend who the message was Not sent to |
|
ByVal Message As String |
Message that was Not sent |
when sub IMSDK.IMClient.BeginSendMessage is called to send a message when the server fails to send a message to friend then this event is fired this happens for every Non Delivered Message
[Visual Basic]
Private Sub MC_OnMessageNotSent(ByVal Friendusername As String, ByVal Message As String) Handles MC.OnMessageNotSent
Debug.WriteLine("Message could not be delivered to: " & Friendusername & " Message : " & Message)
End Sub