2 implementations of HasExited
aspire (1)
DotNet\DotNetCliExecution.cs (1)
38public bool HasExited => _process.HasExited;
Aspire.Cli.Tests (1)
TestServices\TestDotNetCliExecutionFactory.cs (1)
101public bool HasExited => false;
2 references to HasExited
aspire (2)
DotNet\DotNetCliRunner.cs (1)
177catch (SocketException ex) when (execution is not null && execution.HasExited && execution.ExitCode != 0)
DotNet\IDotNetCliExecution.cs (1)
45/// Gets the exit code of the process. Only valid after <see cref="HasExited"/> returns <c>true</c>.