C# Класс Fizzler.Systems.XmlNodeQuery.XmlNodeSelection

Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

QuerySelector() публичный статический Метод

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
Результат System.Xml.XmlNode

QuerySelectorAll() публичный статический Метод

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
Результат IEnumerable