3 implementations of CreateInstance
Microsoft.AspNetCore.Components.Tests (3)
ComponentFactoryTest.cs (2)
364public IComponent CreateInstance(Type componentType) 372public IComponent CreateInstance(Type componentType)
RendererTest.cs (1)
5158public IComponent CreateInstance(Type componentType)
6 references to CreateInstance
Microsoft.AspNetCore.Components (1)
ComponentFactory.cs (1)
57component = _componentActivator.CreateInstance(componentType);
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\EndpointHtmlRenderer.Prerendering.cs (2)
24return componentActivator.CreateInstance(componentType); 34return componentActivator.CreateInstance(componentType);
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteRenderer.cs (1)
312InteractiveServerRenderMode or InteractiveAutoRenderMode => componentActivator.CreateInstance(componentType),
Microsoft.AspNetCore.Components.Tests (1)
RendererTest.cs (1)
5146SubstituteComponentRenderMode => componentActivator.CreateInstance(typeof(MessageComponent)),
Microsoft.AspNetCore.Components.WebAssembly (1)
Rendering\WebAssemblyRenderer.cs (1)
190InteractiveWebAssemblyRenderMode or InteractiveAutoRenderMode => componentActivator.CreateInstance(componentType),