4 writes to TlsEnabled
Aspire.Hosting.Azure.Tests (1)
AzureContainerAppsTests.cs (1)
2409
redis.WithEndpoint("tcp", e => e.
TlsEnabled
= true);
Aspire.Hosting.Redis (1)
RedisBuilderExtensions.cs (1)
187
e.
TlsEnabled
= true;
Aspire.Hosting.Tests (2)
ConditionalReferenceExpressionTests.cs (2)
142
TlsEnabled
= true
178
annotation.
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
"/>.
72
public 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)
829
Assert.True(endpoint.
TlsEnabled
);