WorkUnit.UpdateProgressAndCheckCancelledParallel Method

Updates the progress bar value and checks if the worker thread has been canceled, for a parallel loop.
Protected Friend Function UpdateProgressAndCheckCancelledParallel( _ 
ByVal total As Integer, _ 
ByVal text As String, _ 
ByVal worker As BackgroundWorker, _ 
ByVal doWorkEventArgs As DoWorkEventArgs, _ 
ByVal ParamArray args As String() _ 
) As Boolean
This language is not supported or no code example is available.
internal protected bool UpdateProgressAndCheckCancelledParallel( 
int total
string text
BackgroundWorker worker
DoWorkEventArgs doWorkEventArgs
params string[] args 
)
This language is not supported or no code example is available.

Parameters

total
int

The total number of steps

text
string

The progress bar text

worker
BackgroundWorker

The background worker thread

doWorkEventArgs
DoWorkEventArgs

DoWork event arguments

args
string[]

A string array that contains zero or more strings to format for the progress bar text

Return Value

bool

False if the worker thread was canceled, true otherwise.

Remarks
 
Call ResetProgressParallel before starting the parallel loop.

.NET Framework

Supported in: 4.8

In this article

Definition