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 };
8 references to Canceled
Aspire.Hosting (3)
ApplicationModel\ResourceCommandService.cs (2)
86if (results[i].Canceled) 144else if (result.Canceled)
Dashboard\DashboardServiceData.cs (1)
102if (result.Canceled)
Aspire.Hosting.Tests (5)
ResourceCommandServiceTests.cs (5)
213Assert.True(result.Canceled); 241Assert.True(result.Canceled); 276Assert.False(result.Canceled); // Should not be canceled since there was at least one failure 293Assert.True(result.Canceled); 319Assert.True(result.Canceled);