HtmlNode.CssExists Method

IronWebScraper

HtmlNodeCssExists Method

Uses CSS selectors to find if there are any matching nodes within the Response Document. This works in the same way as $('.ClassName').length > 0 in jQuery or querySelectorAll().length >0 in JavaScript.

Namespace:  IronWebScraper
Assembly:  IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)
Syntax
public bool CssExists(
	string selector
)
Public Function CssExists ( 
	selector As String
) As Boolean

Parameters

selector
Type: SystemString

Return Value

Type: Boolean
See Also