Description Fires when text message arrives from remote side.
Syntax
Private Sub object_IncomingText(Message)
The IncomingText Event syntax has these parts:
|
object | A wodVPN object. | Message | A String value. Text message sent by remote side. |
Remarks IncomingText event is fired when remote side uses
SendText method to send us short text message. On local side you can show this text to your application, or you can use it to send/receive various short commands between wodVPN peers, so that you can make certain custom actions. If you want to send non-text (binary) data, use
SendData method instead.
|