Skybound.Gecko.GeckoWebBrowser.OnHistoryGoForward C# (CSharp) 메소드

OnHistoryGoForward() 보호된 메소드

Raises the HistoryGoForward event.
protected OnHistoryGoForward ( GeckoHistoryEventArgs e ) : void
e GeckoHistoryEventArgs The data for the event.
리턴 void
        protected virtual void OnHistoryGoForward(GeckoHistoryEventArgs e)
        {
            if (((GeckoHistoryEventHandler)this.Events[HistoryGoForwardEvent]) != null)
                ((GeckoHistoryEventHandler)this.Events[HistoryGoForwardEvent])(this, e);
        }