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!

XmlNamedNodeMap.Item

Retrieves the node at the specified index in this XmlNamedNodeMap.

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

Parameters

index
The index position of the node to retrieve from this XmlNamedNodeMap. The index is zero-based; therefore, the first node's index is 0 and the last node's index is Count-1.

Return Value

The XmlNode at the specified index. If index is greater than or equal to the Count property, a null reference (in Visual Basic Nothing) is returned.

See Also

XmlNamedNodeMap Class | XmlNamedNodeMap Members | System.NewXml Namespace