2 instantiations of RootComponentMapping
Microsoft.AspNetCore.Components.WebAssembly (2)
Hosting\RootComponentMappingCollection.cs (2)
28
Add(new
RootComponentMapping
(typeof(TComponent), selector));
52
Add(new
RootComponentMapping
(componentType, selector, parameters));
7 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.
14
public class RootComponentMappingCollection : Collection<
RootComponentMapping
>, IJSComponentConfiguration
59
public void AddRange(IEnumerable<
RootComponentMapping
> items)
63
foreach (
var
item in items)
Hosting\WebAssemblyHost.cs (1)
200
var
rootComponent = rootComponents[i];