System.Net.Http.WinHttpHandlerUnitTests.WinHttpHandlerTest.SslProtocols_SetUsingSupported_Success C# (CSharp) Method

SslProtocols_SetUsingSupported_Success() private method

private SslProtocols_SetUsingSupported_Success ( SslProtocols protocol ) : void
protocol SslProtocols
return void
        public void SslProtocols_SetUsingSupported_Success(SslProtocols protocol)
        {
            var handler = new WinHttpHandler();
            handler.SslProtocols = protocol;
        }
WinHttpHandlerTest