Click or drag to resize

DOMClientGetContainerForNodeAsync Method

Version 130.1.90
Returns the query container of the given node based on container query conditions: containerName, physical, and logical axes. If no axes are provided, the style container is returned, which is the direct parent or the closest element with a matching container-name.

Namespace: CefSharp.DevTools.DOM
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<GetContainerForNodeResponse> GetContainerForNodeAsync(
	int nodeId,
	string containerName = null,
	PhysicalAxes? physicalAxes = null,
	LogicalAxes? logicalAxes = null
)

Parameters

nodeId  Int32
nodeId
containerName  String  (Optional)
containerName
physicalAxes  NullablePhysicalAxes  (Optional)
physicalAxes
logicalAxes  NullableLogicalAxes  (Optional)
logicalAxes

Return Value

TaskGetContainerForNodeResponse
returns System.Threading.Tasks.Task<GetContainerForNodeResponse>
See Also