Response Methods

IronWebScraper

Response Methods

The Response type exposes the following members.

Methods
  NameDescription
Public methodCss
Uses CSS selectors to find all matching nodes within the Response Document. This works in the same way as $('.ClassName') in jQuery or querySelectorAll() in JavaScript.
Public methodCssExists
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.
Public methodEquals (Inherited from Object.)
Public methodGetElementById
Synonym of JavaScript's getElementById function. Searches inside the response as an HTML or XML Document by ID attribute.
Public methodGetElementsByTagName
Synonym of JavaScript's getElementById function. Searches inside the response as an HTML or XML Document by tag-name such as "a" or "img".
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodQuerySelector
Synonym of JavaScript's querySelector function. Searches inside the Response document as an HTML or XML Document using CSS selectors.
Public methodQuerySelectorAll
Synonym of JavaScript's querySelectorAll function. Searches inside the response document as an HTML or XML Document using CSS selectors.
Public methodToAbsoluteUrl(IEnumerableString)
Makes any relative url strings absolute relative to this Response Document.
Public methodToAbsoluteUrl(String)
Makes a relative url strings absolute relative to this Response Document.
Public methodToString (Inherited from Object.)
Public methodXPath
Searches inside the response as an HTML / XML Document using an XPath expression.
Top
See Also