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)
225Canceled = result.Canceled,
Dashboard\DashboardServiceData.cs (1)
102if (result.Canceled)
Aspire.Hosting.Tests (5)
ResourceCommandServiceTests.cs (5)
214Assert.True(result.Canceled); 244Assert.True(result.Canceled); 282Assert.False(result.Canceled); // Should not be canceled since there was at least one failure 299Assert.True(result.Canceled); 325Assert.True(result.Canceled);