Represents a task to be executed with a progress monitor.

Namespace:  Gallio.Runtime.ProgressMonitoring
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public delegate T TaskWithProgress<T>(
	IProgressMonitor progressMonitor
)
Visual Basic (Declaration)
Public Delegate Function TaskWithProgress(Of T) ( _
	progressMonitor As IProgressMonitor _
) As T

Parameters

progressMonitor
Type: Gallio.Runtime.ProgressMonitoring..::.IProgressMonitor
The progress monitor, never null.

Type Parameters

T
The type of the result returned by the task.

See Also