EnvironmentFeedbackDelegate Delegate

BerkeleyDB

The application-specified feedback function called to report Berkeley DB operation progress.

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

Syntax

C#
public delegate void EnvironmentFeedbackDelegate(
	EnvironmentFeedbackEvent opcode,
	int percent
)
Visual Basic (Declaration)
Public Delegate Sub EnvironmentFeedbackDelegate ( _
	opcode As EnvironmentFeedbackEvent, _
	percent As Integer _
)
Visual C++
public delegate void EnvironmentFeedbackDelegate(
	EnvironmentFeedbackEvent opcode, 
	int percent
)

Parameters

opcode
Type: BerkeleyDB..::.EnvironmentFeedbackEvent
An operation code specifying the Berkley DB operation
percent
Type: System..::.Int32
The percent of the operation that has been completed, specified as an integer value between 0 and 100.

See Also