Expert: implements buffer refill. Reads bytes from the current position in the input.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public override void ReadInternal(
	byte[] b,
	int offset,
	int len
)
Visual Basic
Public Overrides Sub ReadInternal ( _
	b As Byte(), _
	offset As Integer, _
	len As Integer _
)
Visual C++
public:
virtual void ReadInternal(
	array<unsigned char>^ b, 
	int offset, 
	int len
) override

Parameters

b
Type: array<System..::..Byte>[]()[][]
the array to read bytes into
offset
Type: System..::..Int32
the offset in the array to start storing bytes
len
Type: System..::..Int32
the number of bytes to read

See Also