14 references to UriString
Aspire.Hosting (9)
ApplicationModel\AllocatedEndpoint.cs (2)
147/// <returns>The URI string, <see cref="UriString"/>.</returns> 148public override string ToString() => UriString;
ApplicationModel\EndpointReference.cs (2)
213public string Url => AllocatedEndpoint.UriString; 378EndpointProperty.Url => new(allocatedEndpoint.UriString),
Backchannel\AppHostRpcTarget.cs (1)
141.Select(e => e.AllocatedEndpoint!.UriString)
Dashboard\DashboardEventHandlers.cs (1)
877var origin = endpoint.AllocatedEndpoint?.UriString;
Devcontainers\DevcontainerPortForwardingEventingSubscriber.cs (1)
44endpoint.AllocatedEndpoint!.UriString,
Orchestrator\ApplicationOrchestrator.cs (2)
337var url = new ResourceUrlAnnotation { Url = allocatedEndpoint.UriString, Endpoint = endpointReference }; 543url.Url = allocatedEndpoint.UriString.TrimEnd('/') + url.Url;
Aspire.Hosting.Blazor (1)
BlazorGatewayExtensions.cs (1)
730Url: $"{ep.AllocatedEndpoint!.UriString}/{pathPrefix}",
Aspire.Hosting.Maui.Tests (3)
MauiPlatformExtensionsTests.cs (3)
710Assert.Equal("http://localhost:55075", stubEndpoint.AllocatedEndpoint?.UriString); 762Assert.Equal("http://localhost:18889", stubEndpoint.AllocatedEndpoint?.UriString); 775Assert.Equal("http://localhost:18889", stubEndpoint.AllocatedEndpoint?.UriString);
TestProject.AppHost (1)
TestProgram.cs (1)
194["Uri"] = allocatedEndpoint.UriString