16 references to Url
Microsoft.AspNetCore.Components (4)
ResourceAsset.cs (1)
28$"Url: '{Url}' - Properties: {string.Join(", ", Properties?.Select(p => $"{p.Name} = {p.Value}") ?? [])}";
ResourceAssetCollection.cs (3)
40throw new InvalidOperationException($"The static asset '{property.Value}' is already mapped to {value.Url}."); 43contentSpecificUrls.Add(resource.Url); 57public string this[string key] => _uniqueUrlMappings.TryGetValue(key, out var value) ? value.Url : key;
Microsoft.AspNetCore.Components.Endpoints (10)
_generated\8\ResourceCollectionSerializerContext.ResourceAsset.g.cs (2)
62Getter = static obj => ((global::Microsoft.AspNetCore.Components.ResourceAsset)obj).Url, 111string __value_Url = ((global::Microsoft.AspNetCore.Components.ResourceAsset)value).Url;
Assets\ImportMapDefinition.cs (4)
61if (!(asset.Url.EndsWith(".mjs", StringComparison.OrdinalIgnoreCase) || 62asset.Url.EndsWith(".js", StringComparison.OrdinalIgnoreCase)) || 72importMap._integrity[$"./{asset.Url}"] = integrity; 78importMap._imports[$"./{label}"] = $"./{asset.Url}";
Builder\ResourceCollectionUrlEndpoint.cs (1)
121var url = resource.Url;
Builder\ResourcePreloadCollection.cs (1)
37var preloadAsset = CreateAsset(asset.Url, asset.Properties);
src\aspnetcore\src\Shared\Components\ResourceCollectionResolver.cs (2)
117resources.Sort((a, b) => string.Compare(a.Url, b.Url, StringComparison.Ordinal));
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
src\aspnetcore\src\Shared\Components\ResourceCollectionResolver.cs (2)
117resources.Sort((a, b) => string.Compare(a.Url, b.Url, StringComparison.Ordinal));