4 writes to Properties
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
296descriptor.Properties = propertiesList;
Microsoft.AspNetCore.StaticAssets.Tests (3)
StaticAssetsIntegrationTests.cs (3)
501Properties = [new("integrity", $"sha256-{hash}")], 522Properties = [], 580Properties = [],
11 references to Properties
Microsoft.AspNetCore.Components.Endpoints (2)
src\Shared\Components\ResourceCollectionResolver.cs (2)
54for (var i = 0; i < descriptor.Properties.Count; i++) 56var property = descriptor.Properties[i];
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
src\Shared\Components\ResourceCollectionResolver.cs (2)
54for (var i = 0; i < descriptor.Properties.Count; i++) 56var property = descriptor.Properties[i];
Microsoft.AspNetCore.StaticAssets (5)
Development\StaticAssetDevelopmentRuntimeHandler.cs (5)
280if (descriptor.Properties.Count == 0) 284var propertiesList = new List<StaticAssetProperty>(descriptor.Properties); 285for (var i = 0; i < descriptor.Properties.Count; i++) 287var property = descriptor.Properties[i]; 294if (propertiesList.Count < descriptor.Properties.Count)
Microsoft.AspNetCore.StaticAssets.Tests (2)
StaticAssetsIntegrationTests.cs (2)
212var integrity = descriptors[0].Properties.FirstOrDefault(p => p.Name == "integrity"); 269var integrity = descriptors[0].Properties.FirstOrDefault(p => p.Name == "integrity");