CommandReceived Event
Signals that a command has been received from the client.
Syntax
type TCommandReceivedEvent = procedure ( Sender: TObject; ConnectionID: Int64; const Command: String; const Parameters: String; var Ignore: Boolean ) of Object;
property OnCommandReceived: TCommandReceivedEvent read FOnCommandReceived write FOnCommandReceived;
Remarks
The component fires this event to notify the application of an incoming command. Set Ignore to True to stop the server from handling the command.
When the command has been processed, the server will report it via the CommandProcessed call.