7 references to YarpSslProtocol
Aspire.Hosting.Yarp (7)
ConfigurationBuilder\YarpCluster.cs (6)
337
private static SslProtocols? MapSslProtocols(IReadOnlyList<
YarpSslProtocol
>? protocols)
345
foreach (
var
protocol in protocols)
349
YarpSslProtocol
.None => SslProtocols.None,
350
YarpSslProtocol
.Tls12 => SslProtocols.Tls12,
351
YarpSslProtocol
.Tls13 => SslProtocols.Tls13,
352
_ => throw new ArgumentOutOfRangeException(nameof(protocols), protocol, $"Unsupported {nameof(
YarpSslProtocol
)} value."),
ConfigurationBuilder\YarpClusterConfigDtos.cs (1)
69
public
YarpSslProtocol
[]? SslProtocols { get; set; }