2 writes to Canceled
Aspire.Hosting (2)
ApplicationModel\ResourceCommandAnnotation.cs (1)
136public static ExecuteCommandResult Canceled() => new() { Success = false, Canceled = true };
ApplicationModel\ResourceCommandService.cs (1)
104return new ExecuteCommandResult { Success = false, Canceled = true };
9 references to Canceled
Aspire.Hosting (4)
ApplicationModel\ResourceCommandService.cs (2)
86if (results[i].Canceled) 144else if (result.Canceled)
Backchannel\AuxiliaryBackchannelRpcTarget.cs (1)
224Canceled = result.Canceled,
Dashboard\DashboardServiceData.cs (1)
102if (result.Canceled)
Aspire.Hosting.Tests (5)
ResourceCommandServiceTests.cs (5)
213Assert.True(result.Canceled); 243Assert.True(result.Canceled); 281Assert.False(result.Canceled); // Should not be canceled since there was at least one failure 298Assert.True(result.Canceled); 324Assert.True(result.Canceled);