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

OnHistoryGotoIndex() protected méthode

Raises the HistoryGotoIndex event.
protected OnHistoryGotoIndex ( GeckoHistoryGotoIndexEventArgs e ) : void
e GeckoHistoryGotoIndexEventArgs The data for the event.
Résultat void
        protected virtual void OnHistoryGotoIndex(GeckoHistoryGotoIndexEventArgs e)
        {
            if (((GeckoHistoryGotoIndexEventHandler)this.Events[HistoryGotoIndexEvent]) != null)
                ((GeckoHistoryGotoIndexEventHandler)this.Events[HistoryGotoIndexEvent])(this, e);
        }