Méthode | Description | |
---|---|---|
BeginCustomTask ( IProgressCalculator calculator ) : |
Starts a task using a custom progress calculator.
|
|
BeginFixedTask ( int steps ) : |
Starts a task with a specific number of steps.
|
|
BeginUnknownTask ( int estimatedSteps, float estimatedWeight ) : |
Starts a task with an unknown number of steps. As tasks complete, the progress will get nearer completion, but will never reach 100%.
|
|
BeginWeightedTask ( ) : |
Starts a task with a specific number of steps. Progress is calculated proportionally for each step.
|
|
EndTask ( ) : void |
Ends this task successfully, meaning that the 100% complete event will fire. This should be called before the task is disposed.
|
|
NextStep ( ) : void |
Advances the current progress task to the next step. Fires ProgressChanged events.
|
|
SetCallback ( ProgressChangedCallback callback, ProgressDepth maxDepth ) : |
Attaches the callback to fire when progress is reported. This is usually called at the beginning of the task. Returns the current progress task, so that methods may be chained.
|
|
SetMaxDepth ( ProgressDepth maxDepth ) : |
An integer value that determines the maximum number of nested progress tasks. Progress reported at deeper levels will be ignored. All negative values are equivalent to "Auto". Returns the current progress task, so that methods may be chained.
|
|
SetTaskKey ( string newTaskKey ) : |
Changes the current task's TaskKey. Returns the current progress task, so that methods may be chained.
|
|
SetTaskKey ( string newTaskKey, object newTaskArg ) : |
Changes the current task's TaskKey. Returns the current progress task, so that methods may be chained.
|
Méthode | Description | |
---|---|---|
GetCurrentTask ( ) : |
Returns the top of the Progress stack. If the top is null, throws an appropriate exception.
|
public static BeginCustomTask ( IProgressCalculator calculator ) : |
||
calculator | IProgressCalculator | Any custom progress calculator |
Résultat |
public static BeginFixedTask ( int steps ) : |
||
steps | int | The number of steps to be performed. |
Résultat |
public static BeginUnknownTask ( int estimatedSteps, float estimatedWeight ) : |
||
estimatedSteps | int | /// Determines how "unknown" progress is calculated. This should be a rough estimate of the number of steps expected. /// As steps are completed, progress gets closer to 100%, but never reaches it. /// |
estimatedWeight | float | /// A value between 0.0 and 1.0 that determines how much weight to place on the estimated steps. /// For example, if estimatedSteps is 100 and estimatedWeight is .75, /// then when 100 steps have completed, progress will be at 75%. /// /// This value cannot equal 0.0 or 1.0. /// |
Résultat |
public static BeginWeightedTask ( ) : |
||
Résultat |
public static SetCallback ( ProgressChangedCallback callback, ProgressDepth maxDepth ) : |
||
callback | ProgressChangedCallback | Attach a callback to the ProgressChanged event |
maxDepth | ProgressDepth | An integer value that determines the maximum number of nested progress tasks. Progress reported at deeper levels will be ignored. All negative values are equivalent to "Auto". |
Résultat |
public static SetMaxDepth ( ProgressDepth maxDepth ) : |
||
maxDepth | ProgressDepth | An integer value that determines the maximum number of nested progress tasks. Progress reported at deeper levels will be ignored. All negative values are equivalent to "Auto". |
Résultat |
public static SetTaskKey ( string newTaskKey ) : |
||
newTaskKey | string | Identifies the task being performed. Can be used for displaying progress. |
Résultat |
public static SetTaskKey ( string newTaskKey, object newTaskArg ) : |
||
newTaskKey | string | Identifies the task being performed. Can be used for displaying progress. |
newTaskArg | object | Provides additional info about the task being performed |
Résultat |