6 references to AllocatedEndpoint
Aspire.Hosting (6)
ApplicationModel\EndpointReference.cs (5)
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;
196
return Endpoint.
AllocatedEndpoint
.TargetPortExpression
Orchestrator\ApplicationOrchestrator.cs (1)
229
if (url.Url.StartsWith('/') && endpoint.
AllocatedEndpoint
is { } allocatedEndpoint)