Icon OnServerProcedure Event

property OnServerProcedure: TEDBServerProcedureEvent

The OnServerProcedure event is fired when a remote session calls its CallRemoteProcedure method to call a custom server procedure and the EngineType property is set to etServer. Write an event handler for this event in order to handle such custom server procedure calls.

Warning This event can be called from multiple threads, so any code that is called from this event handler must be thread-safe. Also, you should never destroy the instance of the TEDBServerProcedure object passed to the OnServerProcedure event. It is automatically created and destroyed for you in a thread-safe manner.
Image