12 references to RootComponent
Microsoft.AspNetCore.Components.WebView.Maui (12)
BlazorWebViewHandler.cs (5)
101 foreach (var component in _rootComponents) 119 var newItems = eventArgs.NewItems!.Cast<RootComponent>(); 120 var oldItems = eventArgs.OldItems!.Cast<RootComponent>(); 122 foreach (var item in newItems.Except(oldItems)) 127 foreach (var item in oldItems.Except(newItems))
IBlazorWebView.cs (1)
28 /// Gets a collection of <see cref="RootComponent"/> items.
iOS\BlazorWebViewHandler.iOS.cs (1)
195 foreach (var rootComponent in RootComponents)
RootComponent.cs (3)
41 throw new InvalidOperationException($"{nameof(RootComponent)} requires a value for its {nameof(Selector)} property, but no value was set."); 46 throw new InvalidOperationException($"{nameof(RootComponent)} requires a value for its {nameof(ComponentType)} property, but no value was set."); 57 throw new InvalidOperationException($"{nameof(RootComponent)} requires a value for its {nameof(Selector)} property, but no value was set.");
RootComponentsCollection.cs (2)
7 /// A collection of <see cref="RootComponent"/> items. 9 public class RootComponentsCollection : ObservableCollection<RootComponent>, IJSComponentConfiguration