Click or drag to resize

RuntimeClientCompileScriptAsync Method

Version 102.0.100
Compiles expression.

Namespace:  CefSharp.DevTools.Runtime
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public Task<CompileScriptResponse> CompileScriptAsync(
	string expression,
	string sourceURL,
	bool persistScript,
	int? executionContextId = null
)

Parameters

expression
Type: SystemString
Expression to compile.
sourceURL
Type: SystemString
Source url to be set for the script.
persistScript
Type: SystemBoolean
Specifies whether the compiled script should be persisted.
executionContextId (Optional)
Type: SystemNullableInt32
Specifies in which execution context to perform script run. If the parameter is omitted theevaluation will be performed in the context of the inspected page.

Return Value

Type: TaskCompileScriptResponse
returns System.Threading.Tasks.Task<CompileScriptResponse>
See Also