ValueTaskSourceStatus Enum

Definition

Indicates the status of an IValueTaskSource or IValueTaskSource<TResult>.

public enum class ValueTaskSourceStatus
public enum ValueTaskSourceStatus
type ValueTaskSourceStatus = 
Public Enum ValueTaskSourceStatus
Inheritance
ValueTaskSourceStatus

Fields

Canceled 3

The operation completed due to cancellation.

Faulted 2

The operation completed with an error.

Pending 0

The operation has not yet completed.

Succeeded 1

The operation completed successfully.

Applies to