HtmlNode.Css Method

IronWebScraper

HtmlNodeCss Method

Uses CSS selectors to find all child nodes matching selector. This works in the same way as $('.ClassName') in jQuery or querySelectorAll() in JavaScript.

Namespace:  IronWebScraper
Assembly:  IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)
Syntax
public HtmlNode[] Css(
	string selector
)
Public Function Css ( 
	selector As String
) As HtmlNode()

Parameters

selector
Type: SystemString

Return Value

Type: HtmlNode
See Also