SiteMapNodeCollection.AddRange Method (SiteMapNode[])

Note: This method is new in the .NET Framework version 2.0.

Adds an array of type SiteMapNode to the collection.

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

public:
virtual void AddRange (
	array<SiteMapNode^>^ value
)
public void AddRange (
	SiteMapNode[] value
)
public function AddRange (
	value : SiteMapNode[]
)

Parameters

value

An array of type SiteMapNode to add to the current SiteMapNodeCollection.

Exception typeCondition

ArgumentException

value is a null reference (Nothing in Visual Basic).

NotSupportedException

The SiteMapNodeCollection is read-only.

The array that is passed to the AddRange method can contain a null reference (Nothing in Visual Basic) values; however, this leads to unexpected exceptions when the SiteMapNodeCollection collection is manipulated.

You cannot add a SiteMapNode object to a read-only or fixed-size SiteMapNodeCollection. You can test whether a SiteMapNodeCollection is read-only by checking the IsReadOnly property.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

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

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: