Construct a HeapRecordId from a byte array, typically Data.

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

Syntax

C#
public static HeapRecordId fromArray(
	byte[] array,
	ByteOrder order
)
Visual Basic (Declaration)
Public Shared Function fromArray ( _
	array As Byte(), _
	order As ByteOrder _
) As HeapRecordId
Visual C++
public:
static HeapRecordId^ fromArray(
	array<unsigned char>^ array, 
	ByteOrder^ order
)

Parameters

array
Type: array< System..::.Byte >[]()[]
The array representing the record id
order
Type: BerkeleyDB..::.ByteOrder
The byte order of the data in array

Return Value

A new HeapRecordId

See Also