Example #1
0
        internal void OnDocumentCompleted(CefFrame frame, int httpStatusCode)
        {
            var handler = this.DocumentCompleted;

            if (handler != null)
            {
                var e = new CefDocumentCompletedEventArgs(frame, httpStatusCode);
                handler(this.owner, e);
            }
        }
Example #2
0
 private void browser_DocumentCompleted(object sender, CefDocumentCompletedEventArgs e)
 {
     Write("DocumentCompleted", "TargetFrameName=[{0}] HttpStatusCode=[{1}]", e.Frame.GetName(), e.HttpStatusCode);
 }
 internal void OnDocumentCompleted(CefFrame frame, int httpStatusCode)
 {
     var handler = this.DocumentCompleted;
     if (handler != null)
     {
         var e = new CefDocumentCompletedEventArgs(frame, httpStatusCode);
         handler(this.owner, e);
     }
 }