10 references to ExecutableState
Aspire.Hosting (10)
Dcp\Model\ContainerExec.cs (6)
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 142|| this.Status?.State == ExecutableState.Stopping;
Dcp\Model\Executable.cs (4)
93public string? State { get; set; } = ExecutableState.Unknown; 212this.Status?.State == ExecutableState.Running 213|| this.Status?.State == ExecutableState.Finished 214|| this.Status?.State == ExecutableState.Terminated;