Click or drag to resize

PageClientReloadAsync Method

Version 102.0.100
Reloads given page optionally ignoring the cache.

Namespace:  CefSharp.DevTools.Page
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public Task<DevToolsMethodResponse> ReloadAsync(
	bool? ignoreCache = null,
	string scriptToEvaluateOnLoad = null
)

Parameters

ignoreCache (Optional)
Type: SystemNullableBoolean
If true, browser cache is ignored (as if the user pressed Shift+refresh).
scriptToEvaluateOnLoad (Optional)
Type: SystemString
If set, the script will be injected into all frames of the inspected page after reload.Argument will be ignored if reloading dataURL origin.

Return Value

Type: TaskDevToolsMethodResponse
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also