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

Remarks

A DoWorkEventArgs instance is passed as a parameter to the DoWork event, and helps pass information in and out of this event between the UI and worker threads.

Check the Argument property to see if any information was passed in to the event from the UI thread. If you wish to pass information from the DoWork event back to the UI thread, use the Result property.

Inheritance Hierarchy

System..::.Object

  System..::.EventArgs

    ESRI.ArcGISExplorer.Threading..::.DoWorkEventArgs

See Also