Gets or sets a value that represents the result of a worker thread operation.

Namespace:  ESRI.ArcGISExplorer.Threading

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

Syntax

C#
public Object Result { get; set; }
Visual Basic (Declaration)
Public Property Result As Object

Field Value

The result of a worker thread operation, or nullNothingnullptra null reference (Nothing in Visual Basic) if no result was set.

Remarks

If data needs to be passed back from the worker thread to the UI thread (informing the UI thread of the result of the worker thread operation), this can be accomplished by setting the Result property. This information is then accessible in the UI thread in the RunWorkerCompleted event from the Result property.

See Also