6 instantiations of PageComponentInfo
Microsoft.AspNetCore.Components.Endpoints (1)
Discovery\PageComponentBuilder.cs (1)
86return new PageComponentInfo(route, PageType, route, pageMetadata);
Microsoft.AspNetCore.Components.Endpoints.Tests (5)
RazorComponentEndpointFactoryTest.cs (5)
25typeof(App), new PageComponentInfo( 67new PageComponentInfo( 95new PageComponentInfo( 123new PageComponentInfo( 155new PageComponentInfo(
11 references to PageComponentInfo
Microsoft.AspNetCore.Components.Endpoints (11)
Builder\RazorComponentEndpointDataSource.cs (1)
120foreach (var definition in context.Pages)
Builder\RazorComponentEndpointFactory.cs (1)
25PageComponentInfo pageDefinition,
Discovery\PageCollectionBuilder.cs (3)
45internal PageComponentInfo[] ToPageCollection() 55return Array.Empty<PageComponentInfo>(); 58var list = new List<PageComponentInfo>(totalCount);
Discovery\PageComponentBuilder.cs (1)
84internal PageComponentInfo Build(string route, object[] pageMetadata)
Discovery\PageComponentInfo.cs (1)
17/// Initializes a new instance of <see cref="PageComponentInfo"/>.
Discovery\RazorComponentApplication.cs (4)
15private readonly PageComponentInfo[] _pages; 19PageComponentInfo[] pageCollection, 27/// Gets the list of <see cref="PageComponentInfo"/> associated with the application. 30public IReadOnlyList<PageComponentInfo> Pages => _pages;