Enum CompletionStatus
Represents the state of a completable object.
public enum CompletionStatus
Fields
Failure = 2The status of a completable object that has failed to complete.
Success = 1The status of a completable object that has been successfully completed.
Unfinished = 0The status of a completable object that is not yet completed.