Partager via


IProgressUpdateEventHandler ::OnProgressUpdate method

The AXE Core raises this event to notify the solution of the current progress reported by the assessment.

Syntax

virtual void OnProgressUpdate(
             Engine                  *sender,
  [in] const ProgressUpdateEventArgs *e
) = 0;

Parameters

sender

The Engine object that raised the event.

e [in]

The ProgressUpdateEventArgs structure that contains information about the current progress.

Return value

This method does not return a value.

Remarks

The parameter of this method allows the assessment to report many different types of progress to a solution application. Percentage indicators, graphical spinners, textual and numerical phases can be used to represent some of the progress information reported by the assessment.

This method is only called by the AXE Engine.

Managed code uses the ProgressUpdateEventHandler delegate.

Requirements

Minimum supported client
Windows 7 [desktop apps only]
Minimum supported server
Windows Server 2008 R2 [desktop apps only]
Header
AxeHosting.h
DLL
AxeCore.dll

See also

IProgressUpdateEventHandler