'Declaration Public Delegate Sub AlarmQueryResponseHandler( _ ByVal final As Boolean, _ ByVal alarmNotificationInfo As AlarmNotificationInfo, _ ByVal numAlarms As Integer _ )
'Usage Dim instance As New AlarmQueryResponseHandler(AddressOf HandlerMethod)
public delegate void AlarmQueryResponseHandler( bool final, AlarmNotificationInfo alarmNotificationInfo, int numAlarms )
public delegate void AlarmQueryResponseHandler( bool final, AlarmNotificationInfo^ alarmNotificationInfo, int numAlarms )
Parameters
- final
- Whether this is the final response.
- alarmNotificationInfo
- The returned list of alarms or events.
- numAlarms
- The number or alarms or events returned.