ITrackCalculationProgressReportProgress Method |
Called periodically by the calculation to indicate its progress.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax void ReportProgress(
int percentProgress,
Object additionalInformation
)
Sub ReportProgress (
percentProgress As Integer,
additionalInformation As Object
)
void ReportProgress(
int percentProgress,
Object^ additionalInformation
)
abstract ReportProgress :
percentProgress : int *
additionalInformation : Object -> unit
Parameters
- percentProgress
- Type: SystemInt32
A value between 0 and 100 indicating the progress of the calculation.
A value of -1 indicates that the percentage of the progress is unknown. - additionalInformation
- Type: SystemObject
Additional information about the progress of the calculation.
The type of this object depends on the specific calculation.
Remarks
This method will not necessarily be called in the same thread that initiated
the calculation, nor is it guaranteed to be called in the same thread
each time it is called. However, a single calculation will
not call this method in multiple threads simultaneously.
See Also