Copies the payload data to a byte array.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public virtual void CopyTo(
	byte[] target,
	int targetOffset
)
Visual Basic
Public Overridable Sub CopyTo ( _
	target As Byte(), _
	targetOffset As Integer _
)
Visual C++
public:
virtual void CopyTo(
	array<unsigned char>^ target, 
	int targetOffset
)

Parameters

target
Type: array<System..::..Byte>[]()[][]
the target byte array
targetOffset
Type: System..::..Int32
the offset in the target byte array

See Also