3 instantiations of AsyncComponent
Microsoft.AspNetCore.Components.Tests (3)
RendererTest.cs (3)
181
var component = new
AsyncComponent
(tcs.Task, 5); // Triggers n renders, the first one creating <p>n</p> and the n-1 renders asynchronously update the value.
320
var component1 = new
AsyncComponent
(tcs1.Task, 1);
329
var component2 = new
AsyncComponent
(tcs2.Task, 1);
3 references to AsyncComponent
Microsoft.AspNetCore.Components.Tests (3)
RendererTest.cs (3)
181
var
component = new AsyncComponent(tcs.Task, 5); // Triggers n renders, the first one creating <p>n</p> and the n-1 renders asynchronously update the value.
320
var
component1 = new AsyncComponent(tcs1.Task, 1);
329
var
component2 = new AsyncComponent(tcs2.Task, 1);