/// <summary> /// Retrieve this frame's HTML source as a string sent to the specified /// visitor. /// </summary> public void GetSource(CefStringVisitor visitor) { if (visitor == null) { throw new ArgumentNullException("visitor"); } cef_frame_t.get_source(_self, visitor.ToNative()); }
/// <summary> /// Retrieve this frame's HTML source as a string sent to the specified /// visitor. /// </summary> public void GetSource(CefStringVisitor visitor) { if (visitor == null) throw new ArgumentNullException("visitor"); cef_frame_t.get_source(_self, visitor.ToNative()); }