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

OnHistoryPurge() protected method

Raises the HistoryPurge event.
protected OnHistoryPurge ( GeckoHistoryPurgeEventArgs e ) : void
e GeckoHistoryPurgeEventArgs The data for the event.
return void
        protected virtual void OnHistoryPurge(GeckoHistoryPurgeEventArgs e)
        {
            if (((GeckoHistoryPurgeEventHandler)this.Events[HistoryPurgeEvent]) != null)
                ((GeckoHistoryPurgeEventHandler)this.Events[HistoryPurgeEvent])(this, e);
        }