1 instantiation of StaticAssetsEndpointDataSource
Microsoft.AspNetCore.StaticAssets (1)
StaticAssetsManifest.cs (1)
40var dataSource = new StaticAssetsEndpointDataSource(endpoints.ServiceProvider, this, new StaticAssetEndpointFactory(endpoints.ServiceProvider), manifestName, descriptors);
5 references to StaticAssetsEndpointDataSource
Microsoft.AspNetCore.StaticAssets (5)
Infrastructure\StaticAssetsEndpointDataSourceHelper.cs (1)
20if (dataSource is StaticAssetsEndpointDataSource staticAssetsDataSource)
StaticAssetsEndpointRouteBuilderExtensions.cs (2)
59var dataSource = manifest.CreateDataSource(endpoints, manifestPath, manifest.Endpoints); 77if (ds is StaticAssetsEndpointDataSource sads && sads.ManifestPath.Equals(manifestPath, StringComparison.Ordinal))
StaticAssetsManifest.cs (2)
38internal StaticAssetsEndpointDataSource CreateDataSource(IEndpointRouteBuilder endpoints, string manifestName, List<StaticAssetDescriptor> descriptors) 40var dataSource = new StaticAssetsEndpointDataSource(endpoints.ServiceProvider, this, new StaticAssetEndpointFactory(endpoints.ServiceProvider), manifestName, descriptors);