47 references to AggregateException
Microsoft.AspNetCore.Mvc.Core (1)
Microsoft.AspNetCore.Server.IIS (2)
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Microsoft.Build (1)
Microsoft.Build.Engine.UnitTests (6)
Microsoft.Build.UnitTests.Shared (1)
Microsoft.Build.Utilities.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.EndToEnd.UnitTests (1)
Microsoft.DotNet.NuGetRepack.Tasks (1)
Microsoft.Extensions.AI (1)
Microsoft.Extensions.AI.Evaluation.Console.Tests (16)
ExceptionUtilitiesTests.cs (16)
41var exception = new AggregateException(new OperationCanceledException());
49var exception = new AggregateException(new TaskCanceledException());
58new AggregateException(
77var exception = new AggregateException(new InvalidOperationException(), new ArgumentException());
85var exception = new AggregateException(new OperationCanceledException(), new InvalidOperationException());
94new AggregateException(
99var exception2 = new AggregateException(new TaskCanceledException(), exception1);
107var exception1 = new AggregateException(new TaskCanceledException(), new InvalidOperationException());
108var exception2 = new AggregateException(new TaskCanceledException(), exception1);
117var exception2 = new AggregateException(exception1);
125var exception1 = new AggregateException(new TaskCanceledException(), new OperationCanceledException());
126var exception2 = new AggregateException(new OperationCanceledException());
127var exception3 = new AggregateException(exception1, exception2, new TaskCanceledException());
135var exception1 = new AggregateException(new TaskCanceledException(), new OperationCanceledException());
136var exception2 = new AggregateException(new InvalidOperationException(), new OperationCanceledException());
137var exception3 = new AggregateException(exception1, exception2, new TaskCanceledException());
Microsoft.ML.TensorFlow (1)
System.Linq.Parallel (8)
System.Net.WebSockets (1)
System.Private.CoreLib (3)
System.Threading.RateLimiting (1)