Click or drag to resize

LoadHandlerOnFrameLoadEnd Method

Version 130.1.90
Called when the browser is done loading a frame. The Frame value will never be empty Check the IsMain method to see if this frame is the main frame. Multiple frames may be loading at the same time. Sub-frames may start or continue loading after the main frame load has ended. This method will always be called for all frames irrespective of whether the request completes successfully. This method will be called on the CEF UI thread. Blocking this thread will likely cause your UI to become unresponsive and/or hang.

Namespace: CefSharp.WinForms.Handler
Assembly: CefSharp.WinForms (in CefSharp.WinForms.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
protected override void OnFrameLoadEnd(
	IWebBrowser chromiumWebBrowser,
	FrameLoadEndEventArgs args
)

Parameters

chromiumWebBrowser  IWebBrowser
the ChromiumWebBrowser control
args  FrameLoadEndEventArgs

[Missing <param name="args"/> documentation for "M:CefSharp.WinForms.Handler.LoadHandler.OnFrameLoadEnd(CefSharp.IWebBrowser,CefSharp.FrameLoadEndEventArgs)"]

See Also