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.
56
public string? State { get; set; } =
ExecutableState
.Unknown;
139
this.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)
93
public string? State { get; set; } =
ExecutableState
.Unknown;
212
this.Status?.State ==
ExecutableState
.Running
213
|| this.Status?.State ==
ExecutableState
.Finished
214
|| this.Status?.State ==
ExecutableState
.Terminated;