Skybound.Gecko.GeckoWebBrowser.OnHistoryGoBack C# (CSharp) Метод

OnHistoryGoBack() защищенный Метод

Raises the HistoryGoBack event.
protected OnHistoryGoBack ( GeckoHistoryEventArgs e ) : void
e GeckoHistoryEventArgs The data for the event.
Результат void
        protected virtual void OnHistoryGoBack(GeckoHistoryEventArgs e)
        {
            if (((GeckoHistoryEventHandler)this.Events[HistoryGoBackEvent]) != null)
                ((GeckoHistoryEventHandler)this.Events[HistoryGoBackEvent])(this, e);
        }