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

OnDomSubmit() protected method

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