XmlNamedNodeMap.Item(UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.