There is no way of overriding the validation of server certificates on an SslStream utilised by ClientWebSocket. Could this be exposed through ClientWebSocketOptions? _EDIT 3/5/2018 by @stephentoub. Added proposal:_ ```C# public sealed class ClientWebSocketOptions { public RemoteCertificateValidationCallback RemoteCertificateValidationCallback { get; set; } ... } ```