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