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

OnHistoryGoBack() protected méthode

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