XmlNode.SelectSingleNode Method
| Explanation | Searches for nodes that match the conditions specified in XPath . | |
| Call format | var node2 = node.SelectSingleNode( xpath ) | |
| Return value | The first XmlNode object found among the nodes that match the search criteria Returns null if no matching node is found . | |
| Arguments | String xpath | Specify the search conditions in XPath format. The XPath format conforms to the SelectNodes method. |
| Exception | None | |
| Example of use | | |
| Related item | SelectNodes method | |