The request was aborted: Could not create SSL/TLS secure channel. hatası nasıl çözülür

Eğer windows sunucusu üzerinde SSL'i ve sanal pos bulunan web sitelerinizde pos çekimi sırasında The request was aborted: Could not create SSL/TLS secure channel. " hatası alıyorsanız.
Not: Eğer sanal pos için bir servisiniz var ise bu kodları o serviste koymanız gerekiyor aksi halde yine aynı hatayı veriyor.
Çözüm: 
İnternette bir yol gördüm karışık benim durumumda aşağıdaki şekilde problemim çözülmüştür. Global.asax içine aşağıdaki kodları ekliyoruz
protected void Application_Start(object sender, EventArgs e)
        {
            ServicePointManager.Expect100Continue = true;
            ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls11;
            ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls12;        
        }

Yorumlar