We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f01fd3 commit d65b6aaCopy full SHA for d65b6aa
src/WebSocketBuilder.NetCoreApp2.1.cs
@@ -133,7 +133,10 @@ public KubernetesWebSocketOptions()
133
/// <summary>
134
/// An <see cref="SslProtocols"/> value representing the SSL protocols that the client supports.
135
/// </summary>
136
- public SslProtocols EnabledSslProtocols { get; set; } = SslProtocols.Tls;
+ /// <remarks>
137
+ /// Defaults to <see cref="SslProtocols.None"/>, which lets the platform select the most appropriate protocol.
138
+ /// </remarks>
139
+ public SslProtocols EnabledSslProtocols { get; set; } = SslProtocols.None;
140
141
142
/// The WebSocket keep-alive interval.
0 commit comments