Click or drag to resize

DebuggerClient.ExecuteWasmEvaluatorAsync Method

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

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

Parameters

callFrameId
Type: System.String
WebAssembly call frame identifier to evaluate on.
evaluator
Type:System.Byte[]
Code of the evaluator module.
timeout (Optional)
Type: System.Nullable<Int64>
Terminate execution after timing out (number of milliseconds).

Return Value

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