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!

XmlNodeList.Item

Retrieves a node at the given index.

[Visual Basic]
MustOverride Public Function Item( _
   ByVal index As Integer _
) As XmlNode
[C#]
public abstract XmlNode Item(
   int index
);
[C++]
public: virtual XmlNode* Item(
   int index
) = 0;
[JScript]
public abstract function Item(
   index : int
) : XmlNode;

Parameters

index
Zero-based index into the list of nodes.

Return Value

The XmlNode in the collection. If index is greater than or equal to the number of nodes in the list, this returns null.

See Also

XmlNodeList Class | XmlNodeList Members | System.NewXml Namespace