Edit

ColumnStream.Read method

Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.

Namespace:  Microsoft.Isam.Esent.Interop
Assembly:  Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)

Syntax

'Declaration
Public Overrides Function Read ( _
    buffer As Byte(), _
    offset As Integer, _
    count As Integer _
) As Integer
'Usage
Dim instance As ColumnStream
Dim buffer As Byte()
Dim offset As Integer
Dim count As Integer
Dim returnValue As Integer

returnValue = instance.Read(buffer, offset, _
    count)
public override int Read(
    byte[] buffer,
    int offset,
    int count
)

Parameters

  • buffer
    Type: []

    The buffer to read into.

  • offset
    Type: System.Int32

    The offset in the buffer to read into.

Return value

Type: System.Int32
The number of bytes read into the buffer.

See also

Reference

ColumnStream class

ColumnStream members

Microsoft.Isam.Esent.Interop namespace