IWinFormsWebBrowserTitleChanged Event | 
Version 93.1.111 
            Occurs when the browser title changed.
            It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
            thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
            To access UI elements you'll need to Invoke/Dispatch onto the UI Thread. 
            
 
    Namespace: 
   CefSharp.WinForms
    Assembly:
   CefSharp.WinForms (in CefSharp.WinForms.dll) Version: 93.1.111.0 (93.1.111.0)
Syntaxevent EventHandler<TitleChangedEventArgs> TitleChanged
 event EventHandler<TitleChangedEventArgs^>^ TitleChanged {
	void add (EventHandler<TitleChangedEventArgs^>^ value);
	void remove (EventHandler<TitleChangedEventArgs^>^ value);
}Value
Type: 
SystemEventHandlerTitleChangedEventArgs
See Also