DOMClientGetNodesForSubtreeByStyleAsync Method  | 
Version 104.4.240 
            Finds nodes with a given computed style in a subtree.
            
 
    Namespace: 
   CefSharp.DevTools.DOM
    Assembly:
   CefSharp (in CefSharp.dll) Version: 104.4.240.0 (104.4.240.0)
Syntaxpublic 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