13 references to Properties
Microsoft.AspNetCore.Components (2)
ResourceAsset.cs (1)
28$"Url: '{Url}' - Properties: {string.Join(", ", Properties?.Select(p => $"{p.Name} = {p.Value}") ?? [])}";
ResourceAssetCollection.cs (1)
34foreach (var property in resource.Properties ?? [])
Microsoft.AspNetCore.Components.Endpoints (8)
Assets\ImportMapDefinition.cs (3)
63asset.Properties == null) 89for (var i = 0; i < asset.Properties!.Count; i++) 91var property = asset.Properties[i];
Builder\ResourcePreloadCollection.cs (3)
16if (asset.Properties == null) 23foreach (var property in asset.Properties) 37var preloadAsset = CreateAsset(asset.Url, asset.Properties);
ResourceCollectionSerializerContext.ResourceAsset.g.cs (2)
81Getter = static obj => ((global::Microsoft.AspNetCore.Components.ResourceAsset)obj).Properties, 114global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.Components.ResourceAssetProperty> __value_Properties = ((global::Microsoft.AspNetCore.Components.ResourceAsset)value).Properties;
Microsoft.AspNetCore.Components.Tests (3)
ResourceAssetCollectionTest.cs (3)
106Assert.Null(deserializedAsset.Properties); 127Assert.Null(deserializedAsset.Properties); 153Assert.Null(deserializedAssets[0].Properties);