C# Class BclExtras.Threading.ProgressTrackerFactory.HiddenProgressTracker

Used when there is not actually a progress dialog but one is neeeded so that a null is not passed
Inheritance: IProgressTracker
Show file Open project: scottwis/tiny

Public Methods

Method Description
BeginInvoke ( Delegate method, object args ) : IAsyncResult
EndInvoke ( IAsyncResult result ) : object
Invoke ( Delegate method, object args ) : object
PerformStep ( ) : void
SetCurrentStep ( int step ) : void
SetStepInformation ( int increment, int total ) : void
SetSummary ( string subDescription ) : void
SetTitle ( string description ) : void

Method Details

BeginInvoke() public method

public BeginInvoke ( Delegate method, object args ) : IAsyncResult
method System.Delegate
args object
return IAsyncResult

EndInvoke() public method

public EndInvoke ( IAsyncResult result ) : object
result IAsyncResult
return object

Invoke() public method

public Invoke ( Delegate method, object args ) : object
method System.Delegate
args object
return object

PerformStep() public method

public PerformStep ( ) : void
return void

SetCurrentStep() public method

public SetCurrentStep ( int step ) : void
step int
return void

SetStepInformation() public method

public SetStepInformation ( int increment, int total ) : void
increment int
total int
return void

SetSummary() public method

public SetSummary ( string subDescription ) : void
subDescription string
return void

SetTitle() public method

public SetTitle ( string description ) : void
description string
return void