Skybound.Gecko.GeckoWebBrowser.OnNavigating C# (CSharp) 메소드

OnNavigating() 보호된 메소드

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