Expert: implements buffer write. Writes bytes at the current position in the output.

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

Syntax

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

Parameters

b
Type: array<System..::..Byte>[]()[][]
the bytes to write
offset
Type: System..::..Int32
the offset in the byte array
len
Type: System..::..Int32
the number of bytes to write

See Also