Version

GetBytes Method

Not for public use.
Syntax
'Declaration
 
Public Function GetBytes( _
   ByVal i As Integer, _
   ByVal fieldOffset As Long, _
   ByVal buffer() As Byte, _
   ByVal bufferoffset As Integer, _
   ByVal length As Integer _
) As Long
public long GetBytes( 
   int i,
   long fieldOffset,
   byte[] buffer,
   int bufferoffset,
   int length
)

Parameters

i
Zero-based index of the field.
fieldOffset
The offset within the fields of the current result at which to begin reading.
buffer
A preallocated octet array to receive the data read.
bufferoffset
The offset within buffer at which to start storing read octets.
length
The length of octets to read into bufferoffset. The buffer must be allocated with a buffer size at least as great as length + bufferoffset or the behavior of this method is undefined.

Return Value

Returns the value zero.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also