ProgressProvider Class ReferenceRepresents a progress provider, which stores the progress temporarily in the cache.
More...
Inheritance diagram for ProgressProvider:
List of all members.
|
Public Member Functions |
|
| ProgressProvider () |
| | Initializes a new instance of the Wilco::Web::UI::WebControls::ProgressProvider class.
|
| virtual void | Initialize (HttpContext context, ProgressBar bar) |
| | Initializes the provider.
|
| string | CreateJobID () |
| | Creates a new job ID.
|
| void | RemoveJobID (string jobID) |
| | Removes a job ID.
|
| virtual double | GetProgress (string jobID) |
| | Gets the progress of the progress bar.
|
| virtual void | SetProgress (string jobID, double value) |
| | Sets the progress of the progress bar.
|
Properties |
|
HttpContext | Context |
| | Gets the context.
|
|
ProgressBar | ProgressBar |
| | Gets the progress bar.
|
Detailed Description
Represents a progress provider, which stores the progress temporarily in the cache.
Member Function Documentation
| virtual double GetProgress |
( |
string |
jobID |
) |
[virtual] |
|
|
|
Gets the progress of the progress bar.
- Parameters:
-
- Returns:
- The progress the job has made.
Implements IProgressProvider. |
| virtual void Initialize |
( |
HttpContext |
context, |
|
|
ProgressBar |
bar |
|
) |
[virtual] |
|
| void RemoveJobID |
( |
string |
jobID |
) |
|
|
| virtual void SetProgress |
( |
string |
jobID, |
|
|
double |
value |
|
) |
[virtual] |
|
|
|
Sets the progress of the progress bar.
- Parameters:
-
| jobID | The ID of the job. |
| value | The progress the job has made. |
Implements IProgressProvider. |
The documentation for this class was generated from the following file:
|