4 writes to TlsEnabled
Aspire.Hosting.Azure.Tests (1)
AzureContainerAppsTests.cs (1)
2409redis.WithEndpoint("tcp", e => e.TlsEnabled = true);
Aspire.Hosting.Redis (1)
RedisBuilderExtensions.cs (1)
187e.TlsEnabled = true;
Aspire.Hosting.Tests (2)
ConditionalReferenceExpressionTests.cs (2)
142TlsEnabled = true 178annotation.TlsEnabled = true;
7 references to TlsEnabled
Aspire.Hosting (3)
ApplicationModel\EndpointReference.cs (3)
70/// Once the annotation exists, this property delegates to <see cref="EndpointAnnotation.TlsEnabled"/>. 72public bool TlsEnabled => Exists && EndpointAnnotation.TlsEnabled; 131/// <see cref="EndpointAnnotation.TlsEnabled"/> is <see langword="true"/> on this endpoint, or to
Aspire.Hosting.Azure.AppContainers (2)
ContainerAppContext.cs (2)
236_endpointMapping[endpoint.Name] = new(scheme, NormalizedContainerAppName, port, targetPort, true, httpIngress.External, endpoint.TlsEnabled); 268_endpointMapping[endpoint.Name] = new(endpoint.UriScheme, NormalizedContainerAppName, resolved.ExposedPort.Value ?? g.Port.Value, g.Port.Value, false, g.External, endpoint.TlsEnabled);
Aspire.Hosting.Redis (1)
RedisResource.cs (1)
70/// This property proxies through to <see cref="EndpointAnnotation.TlsEnabled"/> on the
Aspire.Hosting.Redis.Tests (1)
AddRedisTests.cs (1)
829Assert.True(endpoint.TlsEnabled);