Provides data for the RunWorkerCompleted 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 RunWorkerCompletedEventArgs : EventArgs
Visual Basic (Declaration)
Public NotInheritable Class RunWorkerCompletedEventArgs _
	Inherits EventArgs

Remarks

A RunWorkerCompletedEventArgs instance is passed as a parameter to the RunWorkerCompleted event, and helps pass information back to the UI thread from the worker threads when the work has been completed.

The Result property is set from the worker thread by setting the Result property if the operation needs to pass some data indicating a result back to the UI thread.

Inheritance Hierarchy

System..::.Object

  System..::.EventArgs

    ESRI.ArcGISExplorer.Threading..::.RunWorkerCompletedEventArgs

See Also