3 instantiations of CompositeFileProvider
Microsoft.AspNetCore.Components.WebView (1)
WebViewManager.cs (1)
289return new CompositeFileProvider(manifestProvider, fileProvider);
Microsoft.AspNetCore.Hosting (1)
StaticWebAssets\StaticWebAssetsLoader.cs (1)
43environment.WebRootFileProvider = new CompositeFileProvider(new[] { provider, environment.WebRootFileProvider });
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
RuntimeCompilationFileProvider.cs (1)
50return new CompositeFileProvider(fileProviders);
7 references to CompositeFileProvider
Identity.DefaultUI.WebSite (1)
StartupBase.cs (1)
103case CompositeFileProvider composite:
Microsoft.AspNetCore.Components.WebView.Maui (1)
IBlazorWebView.cs (1)
40 /// as <c>wwwroot/index.html</c>. Call the base method and combine its return value with a <see cref="CompositeFileProvider"/>
Microsoft.AspNetCore.Components.WebView.WindowsForms (1)
BlazorWebView.cs (1)
248 /// as <c>wwwroot/index.html</c>. Call the base method and combine its return value with a <see cref="CompositeFileProvider"/>
Microsoft.AspNetCore.Components.WebView.Wpf (1)
BlazorWebView.cs (1)
335 /// as <c>wwwroot/index.html</c>. Call the base method and combine its return value with a <see cref="CompositeFileProvider"/>
Microsoft.AspNetCore.StaticAssets (1)
StaticAssetsInvoker.cs (1)
166if (!environment.IsDevelopment() && environment.WebRootFileProvider is not CompositeFileProvider)
Microsoft.Extensions.FileProviders.Composite (2)
CompositeFileProvider.cs (2)
20/// Initializes a new instance of the <see cref="CompositeFileProvider" /> class using a collection of file provider objects. 29/// Initializes a new instance of the <see cref="CompositeFileProvider" /> class using a collection of file provider objects.