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