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.
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;
Dcp\Model\Executable.cs (4)
93
public string? State { get; set; } =
ExecutableState
.Unknown;
205
this.Status?.State ==
ExecutableState
.Running
206
|| this.Status?.State ==
ExecutableState
.Finished
207
|| this.Status?.State ==
ExecutableState
.Terminated;