Return the value of all atribute by the request "KeyNames" from the "RootNode"

Namespace:  MonoOBSFramework
Assembly:  MonoOBSFramework (in MonoOBSFramework.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static List<string> GetValue(
	string leXml,
	string Rootnode,
	string KeyName
)
Public Shared Function GetValue ( _
	leXml As String, _
	Rootnode As String, _
	KeyName As String _
) As List(Of String)
public:
static List<String^>^ GetValue(
	String^ leXml, 
	String^ Rootnode, 
	String^ KeyName
)

Parameters

leXml
String
The XML content, for example the content of an XML file.
Rootnode
String
The root node where the search will start.
KeyName
String
The name of the key/node we want attribute values.

Return Value

A [!:List<T>]A list of all getted value.

See Also