Skybound.Gecko.GeckoWebBrowser.OnHistoryNewEntry C# (CSharp) Method

OnHistoryNewEntry() protected method

Raises the HistoryNewEntry event.
protected OnHistoryNewEntry ( GeckoHistoryEventArgs e ) : void
e GeckoHistoryEventArgs The data for the event.
return void
        protected virtual void OnHistoryNewEntry(GeckoHistoryEventArgs e)
        {
            if (((GeckoHistoryEventHandler)this.Events[HistoryNewEntryEvent]) != null)
                ((GeckoHistoryEventHandler)this.Events[HistoryNewEntryEvent])(this, e);
        }