1 write to Scheme
Aspire.Hosting (1)
Dashboard\DashboardEventHandlers.cs (1)
371var endpointContext = new EndpointGenerationContext { Scheme = allowUnsecureTransport ? "http" : "https" };
5 references to Scheme
Aspire.Hosting (5)
Dashboard\DashboardEventHandlers.cs (5)
376dashboardResource.Annotations.Add(new EndpointAnnotation(ProtocolType.Tcp, name: endpointName, uriScheme: endpointContext.Scheme, isProxied: true)); 377LogEndpointAdded(endpointName, scheme: endpointContext.Scheme, host: "localhost", port: null); 401if (string.Equals(address.Scheme, endpointContext.Scheme, StringComparison.OrdinalIgnoreCase)) 776annotation = new EndpointAnnotation(ProtocolType.Tcp, name: endpointName, uriScheme: context.Scheme, isProxied: true, transport: transport) 780LogEndpointAdded(endpointName, scheme: context.Scheme, host: context.TargetHost, port: null);