16 references to TlsEnabled
Aspire.Hosting (4)
ApplicationModel\EndpointReference.cs (3)
147EndpointProperty.TlsEnabled => Binding("tlsEnabled"), 184Property(EndpointProperty.TlsEnabled), 366EndpointProperty.TlsEnabled => Endpoint.TlsEnabled ? bool.TrueString : bool.FalseString,
ApplicationModel\IComputeEnvironmentResource.cs (1)
63EndpointProperty.TlsEnabled => ReferenceExpression.Create($"{(endpoint.TlsEnabled ? bool.TrueString : bool.FalseString)}"),
Aspire.Hosting.Azure.AppContainers (2)
AzureContainerAppEnvironmentResource.cs (1)
386EndpointProperty.TlsEnabled => ReferenceExpression.Create($"{(tlsEnabled ? bool.TrueString : bool.FalseString)}"),
BaseContainerAppContext.cs (1)
211EndpointProperty.TlsEnabled => tlsEnabled ? bool.TrueString : bool.FalseString,
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceEnvironmentResource.cs (1)
538EndpointProperty.TlsEnabled => ReferenceExpression.Create($"{(tlsEnabled ? bool.TrueString : bool.FalseString)}"),
Aspire.Hosting.Azure.Tests (2)
AzureAppServiceTests.cs (1)
1136[InlineData(EndpointProperty.TlsEnabled, "True")]
AzureContainerAppsTests.cs (1)
2738[InlineData(EndpointProperty.TlsEnabled, "True")]
Aspire.Hosting.Radius (1)
RadiusEnvironmentResource.cs (1)
178EndpointProperty.TlsEnabled => ReferenceExpression.Create($"{(endpoint.TlsEnabled ? bool.TrueString : bool.FalseString)}"),
Aspire.Hosting.Tests (6)
ComputeEnvironmentValidationTests.cs (1)
71[InlineData(EndpointProperty.TlsEnabled, "False")]
ConditionalReferenceExpressionTests.cs (5)
81var condition = endpointRef.Property(EndpointProperty.TlsEnabled); 130var tlsExpr = endpointRef.Property(EndpointProperty.TlsEnabled); 147var tlsExpr = endpointRef.Property(EndpointProperty.TlsEnabled); 161var tlsExpr = endpointRef.Property(EndpointProperty.TlsEnabled); 174var tlsExpr = endpointRef.Property(EndpointProperty.TlsEnabled);