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