Skybound.Gecko.GeckoWebBrowser.OnHistoryGoForward C# (CSharp) Méthode

OnHistoryGoForward() protected méthode

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