1 write to Endpoint
Aspire.Hosting (1)
ApplicationModel\ResourceExtensions.cs (1)
845Endpoint = endpoint,
15 references to Endpoint
Aspire.Hosting (1)
Publishing\ManifestPublishingContext.cs (1)
494var endpoint = resolved.Endpoint;
Aspire.Hosting.Azure.AppContainers (8)
ContainerAppContext.cs (8)
149var unsupportedEndpoints = resolvedEndpoints.Where(r => r.Endpoint.UriScheme is not ("tcp" or "http" or "https")).ToArray(); 153throw new NotSupportedException($"The endpoint(s) {string.Join(", ", unsupportedEndpoints.Select(r => $"'{r.Endpoint.Name}'"))} specify an unsupported scheme. The supported schemes are 'http', 'https', and 'tcp'."); 164External = g.Any(x => x.resolved.Endpoint.IsExternal), 165IsHttpOnly = g.All(x => x.resolved.Endpoint.UriScheme is "http" or "https"), 166AnyH2 = g.Any(x => x.resolved.Endpoint.Transport is "http2"), 167UniqueSchemes = g.Select(x => x.resolved.Endpoint.UriScheme).Distinct().ToArray(), 228var endpoint = resolved.Endpoint; 263var endpoint = resolved.Endpoint;
Aspire.Hosting.Azure.AppService (4)
AzureAppServiceWebsiteContext.cs (4)
101var unsupportedEndpoints = resolvedEndpoints.Where(r => r.Endpoint.UriScheme is not ("http" or "https")).ToArray(); 104throw new NotSupportedException($"The endpoint(s) {string.Join(", ", unsupportedEndpoints.Select(r => $"'{r.Endpoint.Name}'"))} on resource '{resource.Name}' specifies an unsupported scheme. Only http and https are supported in App Service."); 109.Where(r => r.Endpoint.IsExternal) 121var endpoint = resolved.Endpoint;
Aspire.Hosting.Docker (1)
DockerComposeEnvironmentContext.cs (1)
45var endpoint = resolved.Endpoint;
Aspire.Hosting.Kubernetes (1)
KubernetesResource.cs (1)
169var endpoint = resolved.Endpoint;