SynchronizationInfoCollection.CopyTo Method (ISynchronizationInfo , Int32)

 

Applies To: Windows Server Update Services

Copies the synchronization information 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(
    ISynchronizationInfo[] array,
    int index
)
public:
void CopyTo(
    array<ISynchronizationInfo^>^ array,
    int index
)
member CopyTo : 
        array:ISynchronizationInfo[] *
        index:int -> unit
Public Sub CopyTo (
    array As ISynchronizationInfo(),
    index As Integer
)

Parameters

  • index
    Type: System.Int32

    Zero-based index that specifies the location in the array at which to begin adding the synchronization information.

Exceptions

Exception

Condition

ArgumentException

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.

ArgumentNullException

array cannot be null.

ArgumentOutOfRangeException

array cannot be less than zero.

See Also

CopyTo Overload
SynchronizationInfoCollection Class
Microsoft.UpdateServices.Administration Namespace

Return to top