5 references to IsHttp
Aspire.Hosting.Blazor (2)
GatewayConfigurationBuilder.cs (2)
29var httpClientEndpoint = httpGatewayEndpoint ?? (gatewayEndpoint.IsHttp ? gatewayEndpoint : null); 90var httpClientEndpoint = httpHostEndpoint ?? (hostEndpoint.IsHttp ? hostEndpoint : null);
Aspire.Hosting.JavaScript (1)
JavaScriptHostingExtensions.cs (1)
2421var hasHttpEndpoint = endpoints.Any(e => e.Exists && e.IsHttp);
Aspire.Hosting.Yarp (2)
ConfigurationBuilder\YarpCluster.cs (2)
129.Where(e => e.Exists && !e.ExcludeReferenceEndpoint && (e.IsHttp || e.IsHttps)) 146var hasHttpEndpoint = schemeNamedEndpoints.Any(e => e.IsHttp);