DebuggerClientExecuteWasmEvaluatorAsync 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
)
public:
Task<ExecuteWasmEvaluatorResponse^>^ ExecuteWasmEvaluatorAsync(
String^ callFrameId,
array<unsigned char>^ evaluator,
Nullable<long long> timeout = nullptr
)
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:
TaskExecuteWasmEvaluatorResponsereturns System.Threading.Tasks.Task<ExecuteWasmEvaluatorResponse>
See Also