type
TScHubAfterReconnectEvent = procedure (Sender: TObject; const ConnectionId: string) of object;
property AfterReconnect: TScHubAfterReconnectEvent;
Description
The AfterReconnect event occurs when a connection to the SignalR server has been reestablished after it had been lost.
Parameters:
• | Sender - the object that raised the event; |
• | ConnectionId - the ID of the reestablished connection. |
See Also