Click or drag to resize

DebuggerClientSetVariableValueAsync Method

Version 102.0.100
Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.

Namespace:  CefSharp.DevTools.Debugger
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public Task<DevToolsMethodResponse> SetVariableValueAsync(
	int scopeNumber,
	string variableName,
	CallArgument newValue,
	string callFrameId
)

Parameters

scopeNumber
Type: SystemInt32
0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch'scope types are allowed. Other scopes could be manipulated manually.
variableName
Type: SystemString
Variable name.
newValue
Type: CefSharp.DevTools.RuntimeCallArgument
New variable value.
callFrameId
Type: SystemString
Id of callframe that holds variable.

Return Value

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