Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlDataDocument::GetElementsByTagName Method (String^)

 

Returns an XmlNodeList containing a list of all descendant elements that match the specified Name.

Namespace:   System.Xml
Assembly:  System.Data (in System.Data.dll)

public:
virtual XmlNodeList^ GetElementsByTagName(
	String^ name
) override

Parameters

name
Type: System::String^

The qualified name to match. It is matched against the Name property of the matching node. The special value "*" matches all tags.

Return Value

Type: System.Xml::XmlNodeList^

An XmlNodeList containing a list of all matching nodes.

System_CAPS_noteNote

It is recommended that you use the XmlNode::SelectNodes or XmlNode::SelectSingleNode method instead of the GetElementsByTagName method.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft