.NET Framework Class Library
BackgroundWorker..::.RunWorkerAsync Method (Object)

Starts execution of a background operation.

Namespace:  System.ComponentModel
Assembly:  System (in System.dll)
Syntax

Visual Basic (Declaration)
Public Sub RunWorkerAsync ( _
    argument As Object _
)
Visual Basic (Usage)
Dim instance As BackgroundWorker
Dim argument As Object

instance.RunWorkerAsync(argument)
C#
public void RunWorkerAsync(
    Object argument
)
Visual C++
public:
void RunWorkerAsync(
    Object^ argument
)
JScript
public function RunWorkerAsync(
    argument : Object
)

Parameters

argument
Type: System..::.Object
A parameter for use by the background operation to be executed in the DoWork event handler.
Exceptions

ExceptionCondition
InvalidOperationException

IsBusy is true.

Remarks

The RunWorkerAsync method submits a request to start the operation running asynchronously. When the request is serviced, the DoWork event is raised, which in turn starts execution of your background operation.

If your operation requires a parameter, you can provide it as the argument parameter to RunWorkerAsync.

If the background operation is already running, calling RunWorkerAsync again will raise an InvalidOperationException.

Examples

The following code example demonstrates the use of the RunWorkerAsync method to start an asynchronous operation. This code example is part of a larger example provided for the BackgroundWorker class.

Visual Basic
' Start the asynchronous operation.
backgroundWorker1.RunWorkerAsync(numberToCompute)
C#
// Start the asynchronous operation.
backgroundWorker1.RunWorkerAsync(numberToCompute);
Visual C++
// Start the asynchronous operation.
backgroundWorker1->RunWorkerAsync( numberToCompute );
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Other Resources

Tags :


Page view tracker