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);
        }