GeneralFunctions.GetXmlNodeValue(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
Deprecated, use GetXmlNodeText
Retrieves the node value of given xpath by loading the given XML.
public:
static System::String ^ GetXmlNodeValue(System::String ^ xml, System::String ^ xpath);
[System.Obsolete("Deprecated, use GetXmlNodeText")]
public static string GetXmlNodeValue (string xml, string xpath);
[<System.Obsolete("Deprecated, use GetXmlNodeText")>]
static member GetXmlNodeValue : string * string -> string
Public Shared Function GetXmlNodeValue (xml As String, xpath As String) As String
Parameters
- xml
- String
Specifies the xml string.
- xpath
- String
Specifies the XPath to query.
Returns
- Attributes