Create a new partial DatabaseEntry object, with the specified data

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

Syntax

C#
public DatabaseEntry(
	byte[] data,
	uint offset,
	uint len
)
Visual Basic (Declaration)
Public Sub New ( _
	data As Byte(), _
	offset As UInteger, _
	len As UInteger _
)
Visual C++
public:
DatabaseEntry(
	array<unsigned char>^ data, 
	unsigned int offset, 
	unsigned int len
)

Parameters

data
Type: array< System..::.Byte >[]()[]
Byte array wrapped by the DatabaseEntry
offset
Type: System..::.UInt32
The offset of the partial record being read or written by the application, in bytes
len
Type: System..::.UInt32
The byte length of the partial record being read or written by the application

See Also