ControlCollection.CopyTo Method (System.Web.UI)

Switch View :
ScriptFree
.NET Framework Class Library
ControlCollection.CopyTo Method

Copies the child controls stored in the ControlCollection object to an System.Array object, beginning at the specified index location in the System.Array.

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

Visual Basic
Public Overridable Sub CopyTo ( _
	array As Array, _
	index As Integer _
)
C#
public virtual void CopyTo(
	Array array,
	int index
)
Visual C++
public:
virtual void CopyTo(
	Array^ array, 
	int index
)
F#
abstract CopyTo : 
        array:Array * 
        index:int -> unit 
override CopyTo : 
        array:Array * 
        index:int -> unit 

Parameters

array
Type: System.Array
The System.Array to copy the child controls to.
index
Type: System.Int32
The zero-based relative index in array where copying begins.

Implements

ICollection.CopyTo(Array, Int32)
Exceptions

Exception Condition
HttpException

array is not null and not one-dimensional.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0
Platforms

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.
See Also

Reference