C# 클래스 Sage.XsltExtensions.Set

파일 보기 프로젝트 열기: igorfrance/sage

공개 메소드들

메소드 설명
distinct ( XPathNodeIterator nodeset, string xpath ) : XPathNodeIterator

Selects nodes from the specified nodeset that have unique values selected with xpath.

distinct ( XPathNodeIterator nodeset, string xpath, bool includeNullEntries ) : XPathNodeIterator

Selects nodes from the specified nodeset that have unique values selected with xpath.

either ( XPathNodeIterator nodeset1, XPathNodeIterator nodeset2 ) : XPathNodeIterator

Returns nodeset1 if it is not empty, otherwise nodeset2.

메소드 상세

distinct() 공개 메소드

Selects nodes from the specified nodeset that have unique values selected with xpath.
public distinct ( XPathNodeIterator nodeset, string xpath ) : XPathNodeIterator
nodeset System.Xml.XPath.XPathNodeIterator The nodeset that contains the nodes to filter.
xpath string The xpath to use to select the value that should be unique between nodes.
리턴 System.Xml.XPath.XPathNodeIterator

distinct() 공개 메소드

Selects nodes from the specified nodeset that have unique values selected with xpath.
public distinct ( XPathNodeIterator nodeset, string xpath, bool includeNullEntries ) : XPathNodeIterator
nodeset System.Xml.XPath.XPathNodeIterator The nodeset that contains the nodes to filter.
xpath string The xpath to use to select the value that should be unique between nodes.
includeNullEntries bool If set to true, nodes that fail to select the specified will be included too.
리턴 System.Xml.XPath.XPathNodeIterator

either() 공개 메소드

Returns nodeset1 if it is not empty, otherwise nodeset2.
public either ( XPathNodeIterator nodeset1, XPathNodeIterator nodeset2 ) : XPathNodeIterator
nodeset1 System.Xml.XPath.XPathNodeIterator The primary selection.
nodeset2 System.Xml.XPath.XPathNodeIterator The secondary selection.
리턴 System.Xml.XPath.XPathNodeIterator