NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlContainer.GetNodes (XmlIdent)

Returns an array containing all child nodes with a given identifier.

[Visual Basic]
Overloads Public Function GetNodes( _
   ByVal id As XmlIdent _
) As XmlNode ()
[C#]
public XmlNode[] GetNodes(
   XmlIdent id
);
[C++]
public: XmlNode* GetNodes(
   XmlIdent* id
) [];
[JScript]
public function GetNodes(
   id : XmlIdent
) : XmlNode[];

Parameters

id
The identifier of the child nodes to return.

Return Value

An array containing the child nodes with the given identifier.

Remarks

The returned array contains all child nodes with the given identifier. The array contains the child nodes in the order they appear in the child list. The returned array may be empty, but it is never null.

To obtain header, text, CDATA, and comment nodes, the predefined node identifiers in the element's context can be used. For example,

See Also

XmlContainer Class | XmlContainer Members | System.Xml Namespace | XmlContainer.GetNodes Overload List | GetNodes | GetNodes | GetNodes