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

OnLoad() protected method

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