Apache Lucene.Net 2.4.0 Class Library API

IndexInput.ReadBytes Method

Reads a specified number of bytes into an array at the specified offset.

Overload List

Reads a specified number of bytes into an array at the specified offset.

public abstract void ReadBytes(byte[],int,int);

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.

public virtual void ReadBytes(byte[],int,int,bool);

See Also

IndexInput Class | Lucene.Net.Store Namespace |