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)
40
throw new InvalidOperationException($"The static asset '{property.Value}' is already mapped to {value.
Url
}.");
43
contentSpecificUrls.Add(resource.
Url
);
57
public 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)
62
Getter = static obj => ((global::Microsoft.AspNetCore.Components.ResourceAsset)obj).
Url
,
111
string __value_Url = ((global::Microsoft.AspNetCore.Components.ResourceAsset)value).
Url
;
Assets\ImportMapDefinition.cs (4)
61
if (!(asset.
Url
.EndsWith(".mjs", StringComparison.OrdinalIgnoreCase) ||
62
asset.
Url
.EndsWith(".js", StringComparison.OrdinalIgnoreCase)) ||
72
importMap._integrity[$"./{asset.
Url
}"] = integrity;
78
importMap._imports[$"./{label}"] = $"./{asset.
Url
}";
Builder\ResourceCollectionUrlEndpoint.cs (1)
121
var url = resource.
Url
;
Builder\ResourcePreloadCollection.cs (1)
37
var preloadAsset = CreateAsset(asset.
Url
, asset.Properties);
src\aspnetcore\src\Shared\Components\ResourceCollectionResolver.cs (2)
117
resources.Sort((a, b) => string.Compare(a.
Url
, b.
Url
, StringComparison.Ordinal));
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
src\aspnetcore\src\Shared\Components\ResourceCollectionResolver.cs (2)
117
resources.Sort((a, b) => string.Compare(a.
Url
, b.
Url
, StringComparison.Ordinal));