OutputIntents.CopyTo

OutputIntents.CopyTo method

Copies the elements of the collection to the array,starting at the particular arrayIndex into the array.

public void CopyTo(OutputIntent[] array, int arrayIndex)
ParameterTypeDescription
arrayOutputIntent[]The one-dimensional array that is the destination of the output intents copied from the collection. The array must have zero-based indexing.
arrayIndexInt32The zero-based index in array at which copying begins.

Exceptions

exceptioncondition
ArgumentNullExceptionarray is null.
ArgumentOutOfRangeExceptionarrayIndex is less than 0.
ArgumentExceptionThe number of elements in the source OutputIntents is greater than the available space from arrayIndex to the end of the destination array.

See Also