9 references to ExecutableState
Aspire.Hosting (9)
Dcp\Model\ContainerExec.cs (5)
53/// The current state of the container execution. See <see cref="ExecutableState"/> for possible values. 56public string? State { get; set; } = ExecutableState.Unknown; 139this.Status?.State == ExecutableState.Running 140|| this.Status?.State == ExecutableState.Finished 141|| this.Status?.State == ExecutableState.Terminated;
Dcp\Model\Executable.cs (4)
89public string? State { get; set; } = ExecutableState.Unknown; 201this.Status?.State == ExecutableState.Running 202|| this.Status?.State == ExecutableState.Finished 203|| this.Status?.State == ExecutableState.Terminated;