SiteMapNodeCollection.AddRange Method (SiteMapNode[])

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[]
)
Not applicable.

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 Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: