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