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