UpdateSummaryCollection.CopyTo Method (IUpdateSummary , Int32)
Applies To: Windows Server Update Services
Copies the summary installation information for the updates in the collection to a one-dimensional array.
Namespace: Microsoft.UpdateServices.Administration
Assembly: Microsoft.UpdateServices.Administration (in Microsoft.UpdateServices.Administration.dll)
Syntax
public void CopyTo(
IUpdateSummary[] array,
int index
)
public:
void CopyTo(
array<IUpdateSummary^>^ array,
int index
)
member CopyTo :
array:IUpdateSummary[] *
index:int -> unit
Public Sub CopyTo (
array As IUpdateSummary(),
index As Integer
)
Parameters
array
Type: Microsoft.UpdateServices.Administration.IUpdateSummary[]Array of IUpdateSummary instances found in the collection.
index
Type: System.Int32Zero-based index that specifies the location in the array at which to begin adding the summary information.
Exceptions
Exception
Condition
Can occur because of either of the following reasons:
index is greater than or equal to the length of the array.
The number of elements from index to the end of the array is less than the number of members in the collection.
array cannot be null.
array cannot be less than zero.
See Also
CopyTo Overload
UpdateSummaryCollection Class
Microsoft.UpdateServices.Administration Namespace
Return to top