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

OnDomContentChanged() protected method

Raises the DomContentChangedEvent event.
protected OnDomContentChanged ( GeckoDomEventArgs e ) : void
e GeckoDomEventArgs The data for the event.
return void
        protected virtual void OnDomContentChanged(GeckoDomEventArgs e)
        {
            if (((GeckoDomEventHandler)this.Events[DomContentChangedEvent]) != null)
                ((GeckoDomEventHandler)this.Events[DomContentChangedEvent])(this, e);
        }