Click or drag to resize
BroccoliSharp BroRecordCopyTo Method
Copies the fields of this BroRecord to an Array, starting at a particular Array index.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public void CopyTo(
	BroField[] array,
	int arrayIndex
)

Parameters

array
Type: BroccoliSharpBroField
The one-dimensional Array that is the destination of the fields copied from BroRecord. The Array must have zero-based indexing.
arrayIndex
Type: SystemInt32
The zero-based index in array at which copying begins.

Implements

ICollectionTCopyTo(T, Int32)
Exceptions
ExceptionCondition
ArgumentNullExceptionarray is null.
ArgumentOutOfRangeExceptionarrayIndex is less than 0.
ArgumentExceptionThe number of fields in the source BroRecord is greater than the available space from arrayIndex to the end of the destination array.
See Also