IDevToolsClientAddEventHandlerT Method  | 
Version 93.1.111  
    Namespace: 
   CefSharp.DevTools
    Assembly:
   CefSharp (in CefSharp.dll) Version: 93.1.111.0 (93.1.111.0)
Syntaxvoid AddEventHandler<T>(
	string eventName,
	EventHandler<T> eventHandler
)
where T : EventArgs
generic<typename T>
where T : EventArgs
void AddEventHandler(
	String^ eventName, 
	EventHandler<T>^ eventHandler
)
Parameters
- eventName
 - Type: SystemString
is the event name to listen to - eventHandler
 - Type: SystemEventHandlerT
event handler to call when the event occurs 
Type Parameters
- T
 - The event args type to which the event will be deserialized to.
 
See Also