Provides data for the ReportProgress event handler.

Namespace:  ESRI.ArcGISExplorer.Threading

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

Syntax

C#
public sealed class ProgressChangedEventArgs : EventArgs
Visual Basic (Declaration)
Public NotInheritable Class ProgressChangedEventArgs _
	Inherits EventArgs

Remarks

A ProgressChangedEventArgs instance is passed as a parameter to the ProgressChanged event, and helps pass information in and out of this event between the UI and worker threads while work is being done.

The Message and Progress properties are set from the worker thread by passing in parameters to the ReportProgress(Int32, String) method.

Inheritance Hierarchy

System..::.Object

  System..::.EventArgs

    ESRI.ArcGISExplorer.Threading..::.ProgressChangedEventArgs

See Also