C# 클래스 Fizzler.Systems.XmlNodeQuery.XmlNodeSelection

파일 보기 프로젝트 열기: atifaziz/Fizzler

공개 메소드들

메소드 설명
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