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

OnHistoryReload() protected méthode

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