AppendCallback Property

BerkeleyDB

A function to call after the record number has been selected but before the data has been stored into the database.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public AppendRecordDelegate AppendCallback { get; set; }
Visual Basic (Declaration)
Public Property AppendCallback As AppendRecordDelegate
Visual C++
public:
property AppendRecordDelegate^ AppendCallback {
	AppendRecordDelegate^ get ();
	void set (AppendRecordDelegate^ value);
}

Remarks

When using Append(DatabaseEntry), it may be useful to modify the stored data based on the generated key. If a delegate is specified, it will be called after the record number has been selected, but before the data has been stored.

See Also