Reads a specified number of bytes into an array at the
specified offset with control over whether the read
should be buffered (callers who have their own buffer
should pass in "false" for useBuffer). Currently only
{@link BufferedIndexInput} respects this parameter.
Namespace: Lucene.Net.StoreAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public virtual void ReadBytes(
byte[] b,
int offset,
int len,
bool useBuffer
) |
Visual Basic |
---|
Public Overridable Sub ReadBytes ( _
b As Byte(), _
offset As Integer, _
len As Integer, _
useBuffer As Boolean _
) |
See Also