XmlNamedNodeMap.Item(UInt32) Method

Definition

Allows random access to individual nodes within the collection.

public:
 virtual IXmlNode ^ Item(unsigned int index) = Item;
IXmlNode Item(uint32_t const& index);
public IXmlNode Item(uint index);
function item(index)
Public Function Item (index As UInteger) As IXmlNode

Parameters

index
UInt32

unsigned int

uint32_t

The index of the item within the collection. The first item is zero.

Returns

The object to access. This method returns null if the index is out of range.

Remarks

Microsoft .NET For C# and Microsoft Visual Basic, XmlNamedNodeMap has a property named ItemOf (not a method). That property is the Microsoft .NET indexer property for the collection. For more info and the usage syntax see ItemOf.

Applies to