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 (String, String)

Returns an array containing all child nodes with a given name and namespace URI.

[Visual Basic]
Overloads Public Function GetNodes( _
   ByVal name As String, _
   ByVal ns As String _
) As XmlNode ()
[C#]
public XmlNode[] GetNodes(
   string name,
   string ns
);
[C++]
public: XmlNode* GetNodes(
   String* name,
   String* ns
) [];
[JScript]
public function GetNodes(
   name : String,
   ns : String
) : XmlNode[];

Parameters

name
The name of the child nodes to return.
ns
The namespace URI of the child nodes to return.

Return Value

An array containing the child nodes with the given name and namespace URI.

Remarks

The returned array contains all child nodes with the given name and namespace URI. 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.

See Also

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