Esempio n. 1
0
 public void RaiseOnDocumentComplete(BrowserNavigateEventArgs e)
 {
     _document = control.Document;
     if (DocumentComplete != null)
     {
         DocumentComplete(this, e);
     }
 }
Esempio n. 2
0
        public virtual void RaiseNavigateComplete(String url)
        {
            BrowserNavigateEventArgs e = new BrowserNavigateEventArgs(url);

            if (NavigateComplete != null)
            {
                NavigateComplete(this, e);
            }
        }
Esempio n. 3
0
        void SelfNavigateComplete(Object s, BrowserNavigateEventArgs e)
        {
            if (activate)
            {
                DoVerb(Interop.OLEIVERB_UIACTIVATE);
            }

            if (html != String.Empty)
            {
                this.SetHtmlText(html);
                RaiseOnDocumentComplete(e);
                this.html = String.Empty;
            }

            if (body != String.Empty)
            {
                SetBodyText(body);
                RaiseOnDocumentComplete(e);
                this.body = String.Empty;
            }
        }
Esempio n. 4
0
        void SelfNavigateComplete(Object s, BrowserNavigateEventArgs e)
        {
            if (activate) DoVerb(Interop.OLEIVERB_UIACTIVATE);

            if (html != String.Empty) {
                this.SetHtmlText(html);
                RaiseOnDocumentComplete(e);
                this.html = String.Empty;
            }

            if (body != String.Empty) {
                SetBodyText(body);
                RaiseOnDocumentComplete(e);
                this.body = String.Empty;
            }
        }
Esempio n. 5
0
 public void RaiseOnDocumentComplete(BrowserNavigateEventArgs e)
 {
     _document = control.Document;
     if (DocumentComplete != null)
         DocumentComplete(this, e);
 }
Esempio n. 6
0
 public virtual void RaiseNavigateComplete(String url)
 {
     BrowserNavigateEventArgs e = new BrowserNavigateEventArgs(url);
     if (NavigateComplete != null) NavigateComplete(this, e);
 }