DOMClientGetNodesForSubtreeByStyleAsync Method |
Version 98.1.210
Finds nodes with a given computed style in a subtree.
Namespace:
CefSharp.DevTools.DOM
Assembly:
CefSharp (in CefSharp.dll) Version: 98.1.210.0 (98.1.210.0)
Syntax public Task<GetNodesForSubtreeByStyleResponse> GetNodesForSubtreeByStyleAsync(
int nodeId,
IList<CSSComputedStyleProperty> computedStyles,
bool? pierce = null
)
public:
Task<GetNodesForSubtreeByStyleResponse^>^ GetNodesForSubtreeByStyleAsync(
int nodeId,
IList<CSSComputedStyleProperty^>^ computedStyles,
Nullable<bool> pierce = nullptr
)
Parameters
- nodeId
- Type: SystemInt32
Node ID pointing to the root of a subtree. - computedStyles
- Type: System.Collections.GenericIListCSSComputedStyleProperty
The style to filter nodes by (includes nodes if any of properties matches). - pierce (Optional)
- Type: SystemNullableBoolean
Whether or not iframes and shadow roots in the same target should be traversed when returning theresults (default is false).
Return Value
Type:
TaskGetNodesForSubtreeByStyleResponsereturns System.Threading.Tasks.Task<GetNodesForSubtreeByStyleResponse>
See Also