| DOMClientGetNodesForSubtreeByStyleAsync Method  | 
Version 90.6.50 
            Finds nodes with a given computed style in a subtree.
            
 
    Namespace: 
   CefSharp.DevTools.DOM
    Assembly:
   CefSharp (in CefSharp.dll) Version: 90.6.50.0 (90.6.50.0)
 Syntax
Syntaxpublic Task<GetNodesForSubtreeByStyleResponse> GetNodesForSubtreeByStyleAsync(
	int nodeId,
	IList<CSSComputedStyleProperty> computedStyles,
	Nullable<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
See Also