Click or drag to resize

BasicNoUIObjSendAppSyncMessage Method

Send the app synchronize message from the IDE to remote NoUI or send the !app message from the NoUI to the remote IDE.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public void SendAppSyncMessage(
	string data,
	int id
)

Parameters

data  String
Send this data to the remote NoUI/IDE.
id  Int32
Ignored for app messages. For !app messages this is the target remote IDE. (Use -1 to broadcast to all IDEs.)
Remarks
SendAppSyncMessage is useful for sending application specific data between the SendAppSyncMessage IDE and NoUI.
Example
Send app synchronize message to the remote:
BasicNoUICtl1.SendAppSyncMessage(data, 0);
See Also