KubernetesWebSocketOptions.EnabledSslProtocols now defaults to None. (#113)

This lets the the local platform select the most appropriate protocol.

kubernetes-client/csharp#112
This commit is contained in:
Adam Friedman
2018-03-23 10:30:02 +11:00
committed by Brendan Burns
parent 4f01fd38ef
commit d65b6aaf66

View File

@@ -133,7 +133,10 @@ namespace k8s
/// <summary>
/// An <see cref="SslProtocols"/> value representing the SSL protocols that the client supports.
/// </summary>
public SslProtocols EnabledSslProtocols { get; set; } = SslProtocols.Tls;
/// <remarks>
/// Defaults to <see cref="SslProtocols.None"/>, which lets the platform select the most appropriate protocol.
/// </remarks>
public SslProtocols EnabledSslProtocols { get; set; } = SslProtocols.None;
/// <summary>
/// The WebSocket keep-alive interval.