Raises the ProgressChanged event.

Namespace: System.Extensions.Windows.Forms
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
public void ReportProgress(
	int percentProgress
)
Visual Basic
Public Sub ReportProgress ( 
	percentProgress As Integer
)
Visual C++
public:
void ReportProgress(
	int percentProgress
)
F#
member ReportProgress : 
        percentProgress : int -> unit 

Parameters

percentProgress
Type: System..::..Int32
THe percentage, from 0 to 100, of the background operation that is complete.

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionThe WorkerReportsProgress property is set to false.

See Also