MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / ServerConnectionChangedEventHandler Delegate
The source of the event, typically the component or control that monitors server connections.
A ServerConnectionChangedEventArgs object that contains the event data.

In This Topic
ServerConnectionChangedEventHandler Delegate
In This Topic
Represents the method that will handle the ServerConnectionChanged event.
Syntax
'Declaration
 
Public Delegate Sub ServerConnectionChangedEventHandler( _
   ByVal sender As Object, _
   ByVal e As ServerConnectionChangedEventArgs _
) 
 

Parameters

sender
The source of the event, typically the component or control that monitors server connections.
e
A ServerConnectionChangedEventArgs object that contains the event data.
Remarks
This delegate is used for handling ServerConnectionChanged events, which are triggered when there is a change in the connection status to a server. The event provides detailed information about the connection status, including whether the connection is currently established and the URL of the server. This can be useful for updating UI elements or triggering other actions based on the connection status.
See Also