5 instantiations of AsyncLoadingComponentCompletion
Microsoft.AspNetCore.Components.Web.Tests (5)
HtmlRendering\HtmlRendererTest.cs (5)
866var services = GetServiceProvider(collection =>collection.AddSingleton(new AsyncLoadingComponentCompletion { Task = completionTcs.Task })); 888var services = GetServiceProvider(collection => collection.AddSingleton(new AsyncLoadingComponentCompletion { Task = new TaskCompletionSource().Task })); 910var services = GetServiceProvider(collection => collection.AddSingleton(new AsyncLoadingComponentCompletion { Task = Task.Delay(0) })); 929var services = GetServiceProvider(collection => collection.AddSingleton(new AsyncLoadingComponentCompletion { Task = new TaskCompletionSource().Task })); 951var services = GetServiceProvider(collection => collection.AddSingleton(new AsyncLoadingComponentCompletion { Task = completionTcs.Task }));
2 references to AsyncLoadingComponentCompletion
Microsoft.AspNetCore.Components.Web.Tests (2)
HtmlRendering\HtmlRendererTest.cs (2)
1319public AsyncLoadingComponentCompletion Completion { get; set; } 1340public AsyncLoadingComponentCompletion Completion { get; set; }