Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.Int32The offset in the buffer to read into.
count
Type: System.Int32The number of bytes to read.
Return value
Type: System.Int32
The number of bytes read into the buffer.