Click or drag to resize

OverlayClientHighlightSourceOrderAsync Method

Version 86.0.240
Highlights the source order of the children of the DOM node with given id or with the given JavaScript object wrapper. Either nodeId or objectId must be specified.

Namespace:  CefSharp.DevTools.Overlay
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public Task<DevToolsMethodResponse> HighlightSourceOrderAsync(
	SourceOrderConfig sourceOrderConfig,
	Nullable<int> nodeId = null,
	Nullable<int> backendNodeId = null,
	string objectId = null
)

Parameters

sourceOrderConfig
Type: CefSharp.DevTools.OverlaySourceOrderConfig
A descriptor for the appearance of the overlay drawing.
nodeId (Optional)
Type: SystemNullableInt32
Identifier of the node to highlight.
backendNodeId (Optional)
Type: SystemNullableInt32
Identifier of the backend node to highlight.
objectId (Optional)
Type: SystemString
JavaScript object id of the node to be highlighted.

Return Value

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