FeedClockVector::CopyTo Method

Copies the elements of the clock vector to array, starting at the index specified by arrayIndex.

Namespace:  Microsoft.Synchronization.FeedSync
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

public:
virtual void CopyTo(
	array<IClockVectorElement^>^ array, 
	int arrayIndex
) sealed

Parameters

array
Type: array<Microsoft.Synchronization::IClockVectorElement>
Clock vector elements are copied to this array.
arrayIndex
Type: System::Int32
Copying starts at this index.

Implements

ICollection<T>::CopyTo(array<T>, Int32)

ExceptionCondition
ArgumentNullException

array is a nullptr.

ArgumentOutOfRangeException

arrayIndex is less than 0 or arrayIndex plus the number of items in this FeedClockVector is larger than the length of array.

Show: