/// <summary> /// Visit the DOM document. This method can only be called from the render /// process. /// </summary> public void VisitDom(CefDomVisitor visitor) { if (visitor == null) { throw new ArgumentNullException("visitor"); } cef_frame_t.visit_dom(_self, visitor.ToNative()); }
/// <summary> /// Visit the DOM document. This method can only be called from the render /// process. /// </summary> public void VisitDom(CefDomVisitor visitor) { if (visitor == null) throw new ArgumentNullException("visitor"); cef_frame_t.visit_dom(_self, visitor.ToNative()); }