|
MessengerYouLike
|
|
This Event Shows the Custom data which was Sent by the IM Server
public event OnCustomCommandReceived;
Public Event OnCustomCommandReceived(ByVal Data As String, ByVal Type As String)
|
Return Values |
Description |
|
ByVal Data As String |
Data That is Sent from the server |
|
ByVal Type As String |
This is also a string value that is sent from the server to the IMClient |
From the Server Administrator can send a custom data to the online Users and the data is made available to the Online IMClient via this event
as developer you can use this function to
any string value can be sent to the online IMClient and that can be used for numbers of possibilities
[Visual Basic]
Private Sub MC_OnCustomCommandReceived(ByVal Data As String, ByVal Type As String) Handles MC.OnCustomCommandReceived
Debug.Writeline("On Custom Command Received :" & Data & " " & Type)
End Sub