XmlNodeクラス

プロパティ

プロパティ 内容
XmlElement Item[String] 指定の名前の最初の子要素。一致しなければnull
XmlAttributeCollection Attributes  
XmlNodeList ChildNodes  
XmlNode ParentNode  
XmlNode FirstChild  
XmlNode LastChild  
XmlNode PreviousSibling  
XmlNode NextSibling  
     

メソッド

SelectNodes()

XPath式に適合するノードのリストを取得できます。

public System.Xml.XmlNodeList SelectNodes (string xpath);
SelectNodes(String) - XmlNode.SelectNodes Method (System.Xml) | Microsoft Learn
XmlNodeList nodeList = root.SelectNodes("element[@attribute='abc']");
Microsoft Learnから検索