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