WebBrowser.OnNavigating(WebBrowserNavigatingEventArgs) Method

Definition

Raises the Navigating event.

protected:
 virtual void OnNavigating(System::Windows::Forms::WebBrowserNavigatingEventArgs ^ e);
protected virtual void OnNavigating (System.Windows.Forms.WebBrowserNavigatingEventArgs e);
abstract member OnNavigating : System.Windows.Forms.WebBrowserNavigatingEventArgs -> unit
override this.OnNavigating : System.Windows.Forms.WebBrowserNavigatingEventArgs -> unit
Protected Overridable Sub OnNavigating (e As WebBrowserNavigatingEventArgs)

Parameters

Remarks

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnNavigating method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors

When overriding OnNavigating(WebBrowserNavigatingEventArgs) in a derived class, be sure to call the base class's OnNavigating(WebBrowserNavigatingEventArgs) method so that registered delegates receive the event.

Applies to

See also