ChromiumWebBrowserAddressChanged Event |
Version 88.2.90
Occurs when the browser address 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.
(The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
Namespace:
CefSharp.OffScreen
Assembly:
CefSharp.OffScreen (in CefSharp.OffScreen.dll) Version: 88.2.90.0 (88.2.90.0)
Syntax public event EventHandler<AddressChangedEventArgs> AddressChanged
public:
event EventHandler<AddressChangedEventArgs^>^ AddressChanged {
void add (EventHandler<AddressChangedEventArgs^>^ value);
void remove (EventHandler<AddressChangedEventArgs^>^ value);
}
Value
Type:
SystemEventHandlerAddressChangedEventArgsSee Also