Gets an integer indicating the progress of the worker operation.

Namespace:  ESRI.ArcGISExplorer.Threading

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public int Progress { get; }
Visual Basic (Declaration)
Public ReadOnly Property Progress As Integer

Field Value

An integer indicating the progress of the operation.

Remarks

The Progress property contains an integer passed from the DoWork event on the background thread, indicating a value for the current amount of progress. It is up to you to implement a meaningful way of measuring your worker threads progress using this value.

See Also