Skip to content
Docs Try Aspire

CompletionState

Enum net10.0
📦 Aspire.Hosting v13.1.2
Represents the completion state of a publishing activity (task, step, or top-level operation).
namespace Aspire.Hosting.Pipelines;
public sealed enum CompletionState
InProgress = 0
The task is in progress.
Completed = 1
The task completed successfully.
CompletedWithWarning = 2
The task completed with warnings.
CompletedWithError = 3
The task completed with an error.