Click or drag to resize
XdsUtilgetChildElementsByTagName Method
Get an enumeration of all of the child elements of the passed parent which match the passed element name.

Namespace: DXMLBase.Xds
Assembly: DXMLBase (in DXMLBase.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static IEnumerable<XmlElement> getChildElementsByTagName(
	XmlNode parent,
	string namespaceURI,
	string tagName
)

Parameters

parent
Type: System.XmlXmlNode
The parent node.
namespaceURI
Type: SystemString
The namespace URI (may be NULL_NAMESPACE, WILDCARD_NAMESPACE, but may not be null).
tagName
Type: SystemString
The local part of the element name (may be WILDCARD_NAME, but may not be null).

Return Value

Type: IEnumerableXmlElement
A (possibly empty) enumeration of the matching child elements.
See Also