ProviderConnectionPointCollection.CopyTo 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.
Copies the collection to an array of ProviderConnectionPoint objects.
public:
void CopyTo(cli::array <System::Web::UI::WebControls::WebParts::ProviderConnectionPoint ^> ^ array, int index);
public void CopyTo (System.Web.UI.WebControls.WebParts.ProviderConnectionPoint[] array, int index);
member this.CopyTo : System.Web.UI.WebControls.WebParts.ProviderConnectionPoint[] * int -> unit
Public Sub CopyTo (array As ProviderConnectionPoint(), index As Integer)
Parameters
- array
- ProviderConnectionPoint[]
An array of ProviderConnectionPoint objects that receives the copied items of the collection.
- index
- Int32
The starting point in the array at which to insert the collection contents.
Remarks
The CopyTo method copies all the members of a ProviderConnectionPointCollection collection to a compatible, one-dimensional array of ProviderConnectionPoint objects, starting at the position in the array that is specified by the index
parameter.
The CopyTo method is useful when you want to combine objects from different collections into a single compatible array, and then be able to access the items in the array using array methods.