10 references to ContainerState
Aspire.Hosting (10)
Dcp\DcpExecutor.cs (2)
429if (container.Spec.Start == false && (container.Status?.State == null || container.Status?.State == ContainerState.Pending)) 1517if (cu.Status?.State == ContainerState.Exited)
Dcp\Model\Container.cs (7)
547this.Status?.State == ContainerState.Starting 548|| this.Status?.State == ContainerState.Building 549|| this.Status?.State == ContainerState.Running 550|| this.Status?.State == ContainerState.Paused 551|| this.Status?.State == ContainerState.Stopping 552|| this.Status?.State == ContainerState.Exited 553|| (this.Status?.State == ContainerState.FailedToStart && this.Status?.ContainerId is not null);
Dcp\ResourceSnapshotBuilder.cs (1)
29if (container.Spec.Start is false && (state == null || state == ContainerState.Pending))