Click or drag to resize
IBackgroundWorker Interface
The interface for an object that does some work on a background thread and then quits the thread. The intention is that it is used once and then discarded, it cannot be used twice.

Namespace: VirtualRadar.Interface
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IBackgroundWorker

The IBackgroundWorker type exposes the following members.

Properties
  NameDescription
Public propertyState
Gets the state passed to StartWork(Object).
Top
Methods
  NameDescription
Public methodStartWork
Raises DoWork on a background thread.
Top
Events
  NameDescription
Public eventDoWork
Raised on the background thread.
Top
See Also