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

OnHistoryGoForward() protected method

Raises the HistoryGoForward event.
protected OnHistoryGoForward ( GeckoHistoryEventArgs e ) : void
e GeckoHistoryEventArgs The data for the event.
return void
        protected virtual void OnHistoryGoForward(GeckoHistoryEventArgs e)
        {
            if (((GeckoHistoryEventHandler)this.Events[HistoryGoForwardEvent]) != null)
                ((GeckoHistoryEventHandler)this.Events[HistoryGoForwardEvent])(this, e);
        }