Click or drag to resize

DebuggerClientExecuteWasmEvaluatorAsync Method

Version 86.0.240
Execute a Wasm Evaluator module on a given call frame.

Namespace:  CefSharp.DevTools.Debugger
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public Task<ExecuteWasmEvaluatorResponse> ExecuteWasmEvaluatorAsync(
	string callFrameId,
	byte[] evaluator,
	Nullable<long> timeout = null
)

Parameters

callFrameId
Type: SystemString
WebAssembly call frame identifier to evaluate on.
evaluator
Type: SystemByte
Code of the evaluator module.
timeout (Optional)
Type: SystemNullableInt64
Terminate execution after timing out (number of milliseconds).

Return Value

Type: TaskExecuteWasmEvaluatorResponse
returns System.Threading.Tasks.Task<ExecuteWasmEvaluatorResponse>
See Also