コード例 #1
0
ファイル: XmlDescendant.cs プロジェクト: 24/source_04
 public static IEnumerable <XElement> zDescendantFormItems(this XElement element, Func <XNode, XNodeFilter> filter = null)
 {
     return(XmlDescendant.DescendantFormItems(element, filter));
 }
コード例 #2
0
ファイル: XmlDescendant.cs プロジェクト: 24/source_04
 public static IEnumerable <XNodeInfo> zDescendantNodesInfos(this IEnumerable <XNode> nodes, Func <XNode, XNodeFilter> filter = null)
 {
     return(XmlDescendant.DescendantNodesInfos(nodes, filter));
 }
コード例 #3
0
ファイル: XmlDescendant.cs プロジェクト: 24/source_04
 public static IEnumerable <XText> zDescendantTextNodes(this IEnumerable <XElement> elements, Func <XNode, XNodeFilter> filter = null)
 {
     return(XmlDescendant.DescendantTextNodes(elements, filter));
 }
コード例 #4
0
ファイル: XmlDescendant.cs プロジェクト: 24/source_04
 public static IEnumerable <XNode> zDescendantNodes(this XNode node, Func <XNode, XNodeFilter> filter = null)
 {
     return(XmlDescendant.DescendantNodes(node, filter));
 }
コード例 #5
0
ファイル: XmlDescendant.cs プロジェクト: 24/source_04
 public static IEnumerable <string> zDescendantTexts(this XElement element, Func <XNode, XNodeFilter> filter = null)
 {
     return(XmlDescendant.DescendantTexts(element, filter));
 }