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