C# Class Fizzler.Systems.XmlNodeQuery.XmlNodeSelection

Show file Open project: atifaziz/Fizzler

Public Methods

Method Description
QuerySelector ( this node, string selector ) : XmlNode

Similar to QuerySelectorAll except it returns only the first element matching the supplied selector strings.

QuerySelectorAll ( this node, string selector ) : IEnumerable

Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings.

Method Details

QuerySelector() public static method

Similar to QuerySelectorAll except it returns only the first element matching the supplied selector strings.
public static QuerySelector ( this node, string selector ) : XmlNode
node this
selector string
return System.Xml.XmlNode

QuerySelectorAll() public static method

Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings.
public static QuerySelectorAll ( this node, string selector ) : IEnumerable
node this
selector string
return IEnumerable