Called when writing data during a backup.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.0

Syntax

C#
int Write(
	byte[] data,
	long offset,
	int count
)
Visual Basic (Declaration)
Function Write ( _
	data As Byte(), _
	offset As Long, _
	count As Integer _
) As Integer
Visual C++
int Write(
	array<unsigned char>^ data, 
	long long offset, 
	int count
)

Parameters

data
Type: array< System..::.Byte >[]()[]
Identifies the buffer which contains the data to be backed up.
offset
Type: System..::.Int64
Identifies the position in the file where bytes from buf should be written.
count
Type: System..::.Int32
Identifies the number of bytes to write to the file from the buffer.

Return Value

0 on success, non-zero on error.

See Also