This documentation is archived and is not being maintained.

SiteMapNodeCollection::Item Property

Gets or sets the SiteMapNode object at the specified index in the collection.

Namespace:  System.Web
Assembly:  System.Web (in System.Web.dll)

public:
virtual property SiteMapNode^ Item[int index] {
	SiteMapNode^ get (int index);
	void set (int index, SiteMapNode^ value);
}

Parameters

index
Type: System::Int32
The index of the SiteMapNode to find.

Property Value

Type: System.Web::SiteMapNode
A SiteMapNode that represents an element in the SiteMapNodeCollection.

ExceptionCondition
NotSupportedException

The SiteMapNodeCollection is read-only.

ArgumentOutOfRangeException

index is less than zero.

- or -

index is great than the Count.

ArgumentNullException

The value supplied to the setter is nullptr.

You can use the Item indexer to iterate over the contents of a SiteMapNodeCollection collection or to replace the SiteMapNode object at a specified index.

The following code example demonstrates how to use the Item indexer to retrieve a SiteMapNode object from the SiteMapNodeCollection collection. In this example, a SiteMapNode object is removed from its position at the second element of the internal array using the Remove method and is appended to the array with the Add method. To insert a SiteMapNode object at a specific index, instead of appending it to the end of the array, use the Insert method.

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: