4 instantiations of RootComponentMapping
Microsoft.AspNetCore.Components.WebAssembly (2)
Hosting\RootComponentMappingCollection.cs (2)
28Add(new RootComponentMapping(typeof(TComponent), selector)); 52Add(new RootComponentMapping(componentType, selector, parameters));
Microsoft.AspNetCore.Components.WebAssembly.Tests (2)
Hosting\RootComponentMappingTest.cs (2)
17var mapping = new RootComponentMapping(typeof(Router), "test"); 29() => new RootComponentMapping(typeof(StringBuilder), "test"),
8 references to RootComponentMapping
Microsoft.AspNetCore.Components.WebAssembly (7)
Hosting\RootComponentMapping.cs (2)
15/// Creates a new instance of <see cref="RootComponentMapping"/> with the provided <paramref name="componentType"/> 39/// Creates a new instance of <see cref="RootComponentMapping"/> with the provided <paramref name="componentType"/>
Hosting\RootComponentMappingCollection.cs (4)
12/// Defines a collection of <see cref="RootComponentMapping"/> items. 14public class RootComponentMappingCollection : Collection<RootComponentMapping>, IJSComponentConfiguration 59public void AddRange(IEnumerable<RootComponentMapping> items) 63foreach (var item in items)
Hosting\WebAssemblyHost.cs (1)
180var rootComponent = rootComponents[i];
Microsoft.AspNetCore.Components.WebAssembly.Tests (1)
Hosting\RootComponentMappingTest.cs (1)
17var mapping = new RootComponentMapping(typeof(Router), "test");