Click or drag to resize

DebuggerExecuteWasmEvaluatorAsync Method

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

Namespace:  CefSharp.DevTools.Debugger
Assembly:  CefSharp (in CefSharp.dll) Version: 85.3.121.0 (85.3.121.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