5 references to AllocatedEndpoint
Aspire.Hosting (5)
ApplicationModel\EndpointReference.cs (4)
78
public int Port =>
AllocatedEndpoint
.Port;
88
public string Host =>
AllocatedEndpoint
.Address ?? "localhost";
93
public string ContainerHost =>
AllocatedEndpoint
.ContainerHostAddress ?? throw new InvalidOperationException($"The endpoint \"{EndpointName}\" has no associated container host name.");
103
public string Url =>
AllocatedEndpoint
.UriString;
Orchestrator\ApplicationOrchestrator.cs (1)
208
if (url.Url.StartsWith('/') && endpoint.
AllocatedEndpoint
is { } allocatedEndpoint)