ResultTable.GetBytes method
Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset.
Namespace: Microsoft.Office.Server.Search.Query
Assembly: Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)
Syntax
'Declaration
Public Function GetBytes ( _
i As Integer, _
fieldOffset As Long, _
buffer As Byte(), _
bufferoffset As Integer, _
length As Integer _
) As Long
'Usage
Dim instance As ResultTable
Dim i As Integer
Dim fieldOffset As Long
Dim buffer As Byte()
Dim bufferoffset As Integer
Dim length As Integer
Dim returnValue As Long
returnValue = instance.GetBytes(i, fieldOffset, _
buffer, bufferoffset, length)
public long GetBytes(
int i,
long fieldOffset,
byte[] buffer,
int bufferoffset,
int length
)
Parameters
i
Type: System.Int32The index of the column.
fieldOffset
Type: System.Int64The index within the field from which to start the read operation.
buffer
Type: []The buffer into which to read the stream of bytes.
bufferoffset
Type: System.Int32The index for buffer to start the read operation.
length
Type: System.Int32The number of bytes to read.
Return value
Type: System.Int64
The actual number of bytes read.
Implements
IDataRecord.GetBytes(Int32, Int64, [], Int32, Int32)