5 references to IsHttps
Aspire.Hosting.Blazor (2)
GatewayConfigurationBuilder.cs (2)
30var httpsClientEndpoint = gatewayEndpoint.IsHttps ? gatewayEndpoint : null; 91var httpsClientEndpoint = hostEndpoint.IsHttps ? hostEndpoint : null;
Aspire.Hosting.JavaScript (1)
JavaScriptHostingExtensions.cs (1)
2420var hasHttpsEndpoint = endpoints.Any(e => e.Exists && e.IsHttps);
Aspire.Hosting.Yarp (2)
ConfigurationBuilder\YarpCluster.cs (2)
129.Where(e => e.Exists && !e.ExcludeReferenceEndpoint && (e.IsHttp || e.IsHttps)) 145var hasHttpsEndpoint = schemeNamedEndpoints.Any(e => e.IsHttps);