Skybound.Gecko.GeckoWebBrowser.OnNavigating C# (CSharp) Method

OnNavigating() protected method

Raises the Navigating event.
protected OnNavigating ( GeckoNavigatingEventArgs e ) : void
e GeckoNavigatingEventArgs The data for the event.
return void
        protected virtual void OnNavigating(GeckoNavigatingEventArgs e)
        {
            if (((GeckoNavigatingEventHandler)this.Events[NavigatingEvent]) != null)
                ((GeckoNavigatingEventHandler)this.Events[NavigatingEvent])(this, e);
        }