34 writes to Url
Aspire.Hosting (12)
ApplicationModel\ResourceUrlAnnotation.cs (1)
45Url = Url,
Orchestrator\ApplicationOrchestrator.cs (6)
250var url = new ResourceUrlAnnotation { Url = allocatedEndpoint.UriString, Endpoint = endpointReference }; 263Url = $"{allocatedEndpoint.UriScheme}://{endpoint.TargetHost}:{allocatedEndpoint.Port}", 272Url = $"{allocatedEndpoint.UriScheme}://{Environment.MachineName}:{allocatedEndpoint.Port}", 305Url = $"{allocatedEndpoint.UriScheme}://{resource.Name.ToLowerInvariant()}-{subdomainSuffix}.dev.localhost:{allocatedEndpoint.Port}", 420url.Url = uriBuilder.Uri.ToString(); 456url.Url = allocatedEndpoint.UriString.TrimEnd('/') + url.Url;
ProjectResourceBuilderExtensions.cs (2)
613url.Url = launchProfile.LaunchUrl; 619url.Url = (new Uri(baseUri, launchUri)).ToString();
ResourceBuilderExtensions.cs (3)
1178u.Url = uri.ToString(); 1186return builder.WithAnnotation(new ResourceUrlAnnotation { Url = url, DisplayText = displayText }); 1235c.Urls.Add(new() { Endpoint = endpoint, Url = urlValue, DisplayText = displayText });
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
541tunnelUrl.Url = new UriBuilder(tunnelUrl.Url).Uri.ToString().TrimEnd('/'); 568Url = new UriBuilder(portUri) { Host = $"{hostPrefix}-inspect{hostSuffix}" }.Uri.ToString(),
Aspire.Hosting.Qdrant (1)
QdrantBuilderExtensions.cs (1)
97.WithUrlForEndpoint(QdrantServerResource.HttpEndpointName, e => new ResourceUrlAnnotation() { Url = "/dashboard", DisplayText = "Qdrant Dashboard" });
Aspire.Hosting.Tests (15)
WithUrlsTests.cs (15)
140.WithUrls(c => c.Urls.Add(new() { Url = "https://example.com", DisplayText = "Example" })) 344u.Url = "https://example.com"; 374.WithUrlForEndpoint("http", u => u.Url = "https://example.com"); 663c.Urls.Add(new() { Url = "http://example.com/", DisplayLocation = UrlDisplayLocation.SummaryAndDetails }); 664c.Urls.Add(new() { Url = "http://example.com/internal", DisplayLocation = UrlDisplayLocation.DetailsOnly }); 665c.Urls.Add(new() { Url = "http://example.com/out-of-range", DisplayLocation = (UrlDisplayLocation)100 }); 730return new() { Url = "https://example.com" }; 756.WithUrls(c => c.Urls.Add(new() { Url = "https://callback-before.com/sub-path", DisplayText = "Example" })) 759.WithUrls(c => c.Urls.Add(new() { Url = "https://callback-after.com/sub-path" })) // This won't get updated because it's added after the relative URL 818url.Url = "/test-sub-path"; 851url.Url = "/test-sub-path"; 857Url = "/test-another-sub-path", 899return new() { Url = "/sub-path" }; 929c.Urls.Add(new() { Endpoint = c.GetEndpoint("test"), Url = "/sub-path" }); 966Url = "/",
Stress.AppHost (1)
Program.cs (1)
98.WithUrls(c => c.Urls.Add(new() { Url = "https://someplace.com", DisplayText = "Some place" }))
TestShop.AppHost (3)
AppHost.cs (3)
57u.Url = "/"; 63Url = "/swagger", 89.WithUrlForEndpoint("https", ep => new() { Url = "/health", DisplayText = "Health", DisplayLocation = UrlDisplayLocation.DetailsOnly })
67 references to Url
Aspire.Hosting (24)
ApplicationModel\ResourceUrlAnnotation.cs (1)
45Url = Url,
Dcp\ResourceSnapshotBuilder.cs (3)
274Url: endpointUrl.Url, 302new(Name: endpointName, Url: endpointUrl.Url, IsInternal: endpointUrl.IsInternal) 313new(Name: null, Url: url.Url, IsInternal: url.IsInternal)
Orchestrator\ApplicationOrchestrator.cs (18)
155urls = resourceUrls.Select(url => new UrlSnapshot(Name: url.Endpoint?.EndpointName, Url: url.Url, IsInternal: url.DisplayLocation == UrlDisplayLocation.DetailsOnly) 331_logger.LogTrace("Added URL '{Url}' for endpoint '{EndpointName}' on resource '{ResourceName}'.", url.Url, endpoint.Name, resource.Name); 338_logger.LogTrace("Added additional URL '{Url}' for endpoint '{EndpointName}' on resource '{ResourceName}'.", additionalUrl.Url, endpoint.Name, resource.Name); 352_logger.LogTrace("Added static URL '{Url}' for resource '{ResourceName}'.", staticUrl.Url, resource.Name); 399Uri.TryCreate(primaryUrl.Url, UriKind.RelativeOrAbsolute, out var primaryUri); 400var primaryPath = primaryUri?.IsAbsoluteUri == true ? primaryUri.AbsolutePath : primaryUrl.Url; 407_logger.LogTrace("Applying path '{Path}' from URL '{Url}' for primary launch profile endpoint '{EndpointName}' to other launch profile endpoints for resource '{ResourceName}'.", primaryPath, primaryUrl.Url, primaryLaunchProfileEndpoint.Name, resource.Name); 412&& !string.Equals(url.Url, primaryUrl.Url, StringComparisons.Url) 413&& Uri.IsWellFormedUriString(url.Url, UriKind.Absolute)) 417_logger.LogTrace("Updating URL '{Url}' with path '{Path}' for launch profile endpoint '{EndpointName}' for resource '{ResourceName}'.", url.Url, primaryPath, url.Endpoint.EndpointName, resource.Name); 419var uriBuilder = new UriBuilder(url.Url) { Path = primaryPath }; 423_logger.LogTrace("Updated URL to '{Url}' for launch profile endpoint '{EndpointName}' on resource '{ResourceName}'.", url.Url, url.Endpoint.EndpointName, resource.Name); 432_logger.LogTrace("URL '{Url}' for primary launch profile endpoint '{EndpointName}' for resource '{ResourceName}' does not have a path to apply to other launch profile endpoints.", primaryUrl.Url, primaryLaunchProfileEndpoint.Name, resource.Name); 454if (url.Url.StartsWith('/') && endpoint.AllocatedEndpoint is { } allocatedEndpoint) 456url.Url = allocatedEndpoint.UriString.TrimEnd('/') + url.Url; 459_logger.LogTrace("Converted relative URL to absolute URL '{Url}' for endpoint '{EndpointName}' on resource '{ResourceName}'.", url.Url, endpoint.EndpointName, resource.Name); 473_logger.LogTrace("Added URL annotation '{Url}' to resource '{ResourceName}'.", url.Url, resource.Name);
ProjectResourceBuilderExtensions.cs (1)
618var baseUri = new Uri(url.Url);
ResourceBuilderExtensions.cs (1)
1175if (Uri.TryCreate(u.Url, UriKind.Absolute, out var absoluteUri)
Aspire.Hosting.DevTunnels (3)
DevTunnelResourceBuilderExtensions.cs (3)
539&& !string.Equals(new UriBuilder(u.Url).Host, "localhost")) is { } tunnelUrl) 541tunnelUrl.Url = new UriBuilder(tunnelUrl.Url).Uri.ToString().TrimEnd('/'); 547&& string.Equals(new UriBuilder(u.Url).Host, "localhost", StringComparison.OrdinalIgnoreCase)) is { } localhostTunnelUrl)
Aspire.Hosting.Qdrant.Tests (1)
QdrantFunctionalTests.cs (1)
248Assert.Single(urls, u => u.DisplayText == "Qdrant Dashboard" && u.Url.EndsWith("/dashboard"));
Aspire.Hosting.Tests (39)
WithEndpointTests.cs (4)
618url => Assert.StartsWith("https://example.localhost:", url.Url), 619url => Assert.StartsWith("https://localhost:", url.Url)); 652url => Assert.StartsWith("https://localhost:", url.Url), 653url => Assert.StartsWith($"https://{Environment.MachineName}:", url.Url));
WithUrlsTests.cs (35)
152Assert.Single(urls, u => u.Url == "https://example.com" && u.DisplayText == "Example"); 176Assert.Single(urls, u => u.Url == "https://example.com" && u.DisplayText == "Example"); 204u => Assert.True(u.Url == endpointUrl.Url && u.DisplayText is null), 205u => Assert.True(u.Url.EndsWith("/test") && u.DisplayText == "Example") 230Assert.Single(urls, u => u.Url.StartsWith("http://localhost") && u.Endpoint?.EndpointName == "test"); 266Assert.StartsWith($"http://{projectB.Resource.Name.ToLowerInvariant()}{expectedHostSuffix}", u.Url); 267Assert.EndsWith("/sub-path", u.Url); 274Assert.StartsWith("http://localhost", u.Url); 280Assert.StartsWith("tcp://localhost", u.Url); 306Assert.Single(urls, u => u.Url.EndsWith("/sub-path") && u.Endpoint?.EndpointName == "http"); 329Assert.Single(urls, u => u.Url == "http://custom.localhost:23456/home" && u.Endpoint?.EndpointName == "http"); 360u.Url == "https://example.com" 772var staticBeforeUrl = allUrls.FirstOrDefault(u => u.Endpoint is null && u.Url.StartsWith("https://static-before.com")); 773var callbackBeforeUrl = allUrls.FirstOrDefault(u => u.Endpoint is null && u.Url.StartsWith("https://callback-before.com")); 774var staticAfter = allUrls.FirstOrDefault(u => u.Endpoint is null && u.Url.StartsWith("https://static-after.com")); 775var callbackAfter = allUrls.FirstOrDefault(u => u.Endpoint is null && u.Url.StartsWith("https://callback-after.com")); 779Assert.True(endpointUrl.Url.StartsWith("http://localhost") && endpointUrl.Url.EndsWith("/test")); 782Assert.Equal("https://static-before.com/test", staticBeforeUrl.Url); 785Assert.Equal("https://callback-before.com/test", callbackBeforeUrl.Url); 788Assert.Equal("https://static-after.com/test", staticAfter.Url); 791Assert.Equal("https://callback-after.com/sub-path", callbackAfter.Url); 834Assert.StartsWith(useHttps ? "https://localhost" : "http://localhost", endpointUrl.Url); 835Assert.EndsWith("/test-sub-path", endpointUrl.Url); 874Assert.StartsWith("http://localhost", url.Url); 875Assert.EndsWith("/test-sub-path", url.Url); 880Assert.StartsWith("http://localhost", url.Url); 881Assert.EndsWith("/test-another-sub-path", url.Url); 911var endpointUrl = projectA.Resource.Annotations.OfType<ResourceUrlAnnotation>().FirstOrDefault(u => u.Endpoint?.EndpointName == "test" && u.Url.EndsWith("/sub-path")); 914Assert.True(endpointUrl.Url.StartsWith("http://localhost") && endpointUrl.Url.EndsWith("/sub-path")); 941var endpointUrl = projectA.Resource.Annotations.OfType<ResourceUrlAnnotation>().FirstOrDefault(u => u.Endpoint?.EndpointName == "test" && u.Url.EndsWith("/sub-path")); 944Assert.True(endpointUrl.Url.StartsWith("http://localhost") && endpointUrl.Url.EndsWith("/sub-path"));