AFProgressStatus Enumeration
- Last UpdatedNov 18, 2025
- 2 minute read
- PI System
- AF SDK 2024 R2
- Developer
Specifies the status of a operation.
Namespace: OSIsoft.AF
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.1.1.1182
Syntax
public enum AFProgressStatus
Public Enumeration AFProgressStatus Dim instance As AFProgressStatus
public enum class AFProgressStatus
type AFProgressStatus
Members
| Member name | Value | Description | |
|---|---|---|---|
| InProgress | 0 | Specifies that the operations is in Progress and this is a notification of the progress. | |
| HasError | 1 | Specifies that an error has occurred during the operation and allows the client to react to it. | |
| Complete | 2 | Specifies that the operation is complete, with no errors. | |
| CompleteWithErrors | 3 | Specifies that the operation is complete, but has encountered errors. | |
| Canceled | 4 | Specifies that the operation was canceled. | |
| PromptForContinue | 5 | Specifies that the operation can be continued or canceled based on the response to a prompt. |
Remarks
The AFProgressEventArgs class uses this enumeration to define
the action that caused the event to be raised.