4 writes to Properties
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
346descriptor.Properties = propertiesList;
Microsoft.AspNetCore.StaticAssets.Tests (3)
StaticAssetsIntegrationTests.cs (3)
501Properties = [new("integrity", $"sha256-{hash}")], 522Properties = [new("original-resource", $"\"{GetEtag(resource.Content)}\"")], 579Properties = [],
13 references to Properties
Microsoft.AspNetCore.Components.Endpoints (2)
src\Shared\Components\ResourceCollectionResolver.cs (2)
66for (var i = 0; i < descriptor.Properties.Count; i++) 68var property = descriptor.Properties[i];
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
src\Shared\Components\ResourceCollectionResolver.cs (2)
66for (var i = 0; i < descriptor.Properties.Count; i++) 68var property = descriptor.Properties[i];
Microsoft.AspNetCore.StaticAssets (7)
Development\StaticAssetDevelopmentRuntimeHandler.cs (7)
77for (var i = 0; i < descriptor.Properties.Count; i++) 79var property = descriptor.Properties[i]; 330if (descriptor.Properties.Count == 0) 334var propertiesList = new List<StaticAssetProperty>(descriptor.Properties); 335for (var i = 0; i < descriptor.Properties.Count; i++) 337var property = descriptor.Properties[i]; 344if (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");