LoadHandlerOnLoadError Method |
Version 106.0.290
Called when the resource load for a navigation fails or is canceled.
ErrorCode is the error code number,
ErrorText is the error text and
FailedUrl is the URL that failed to load. See net\base\net_error_list.h
for complete descriptions of the error codes.
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: 106.0.290.0 (106.0.290.0)
Syntax protected override void OnLoadError(
IWebBrowser chromiumWebBrowser,
LoadErrorEventArgs args
)
protected:
virtual void OnLoadError(
IWebBrowser^ chromiumWebBrowser,
LoadErrorEventArgs^ args
) override
Parameters
- chromiumWebBrowser
- Type: CefSharpIWebBrowser
the ChromiumWebBrowser control - args
- Type: CefSharpLoadErrorEventArgs
[Missing <param name="args"/> documentation for "M:CefSharp.WinForms.Handler.LoadHandler.OnLoadError(CefSharp.IWebBrowser,CefSharp.LoadErrorEventArgs)"]
See Also