13 references to RootComponent
Microsoft.AspNetCore.Components.WebView.Wpf (13)
BlazorWebView.cs (9)
48
/// The backing store for the <see cref="
RootComponent
"/> property.
154
/// A collection of <see cref="
RootComponent
"/> instances that specify the Blazor <see cref="IComponent"/> types
292
foreach (
var
rootComponent in RootComponents)
316
var newItems = (eventArgs.NewItems ?? Array.Empty<
RootComponent
>()).Cast<
RootComponent
>();
317
var oldItems = (eventArgs.OldItems ?? Array.Empty<
RootComponent
>()).Cast<
RootComponent
>();
319
foreach (
var
item in newItems.Except(oldItems))
324
foreach (
var
item in oldItems.Except(newItems))
RootComponent.cs (2)
40
throw new InvalidOperationException($"{nameof(
RootComponent
)} requires a value for its {nameof(Selector)} property, but no value was set.");
45
throw new InvalidOperationException($"{nameof(
RootComponent
)} requires a value for its {nameof(ComponentType)} property, but no value was set.");
RootComponentsCollection.cs (2)
10
/// A collection of <see cref="
RootComponent
"/> items.
12
public class RootComponentsCollection : ObservableCollection<
RootComponent
>, IJSComponentConfiguration