IProgressProvider Interface ReferenceProvides an interface for progress providers.
More...
Inheritance diagram for IProgressProvider:
List of all members.
|
Public Member Functions |
| void | Initialize (HttpContext context, ProgressBar bar) |
| | Initializes the provider.
|
| string | CreateJobID () |
| | Creates a new job ID.
|
| void | RemoveJobID (string jobID) |
| | Removes a job ID.
|
| double | GetProgress (string jobID) |
| | Gets the progress of the progress bar.
|
| void | SetProgress (string jobID, double value) |
| | Sets the progress of the progress bar.
|
Detailed Description
Provides an interface for progress providers.
Member Function Documentation
| double GetProgress |
( |
string |
jobID |
) |
|
|
|
|
Gets the progress of the progress bar.
- Parameters:
-
- Returns:
- The progress the job has made.
Implemented in ProgressProvider. |
| void Initialize |
( |
HttpContext |
context, |
|
|
ProgressBar |
bar |
|
) |
|
|
| void RemoveJobID |
( |
string |
jobID |
) |
|
|
| void SetProgress |
( |
string |
jobID, |
|
|
double |
value |
|
) |
|
|
|
|
Sets the progress of the progress bar.
- Parameters:
-
| jobID | The ID of the job. |
| value | The progress the job has made. |
Implemented in ProgressProvider. |
The documentation for this interface was generated from the following file:
|