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