private string Adres(SozlockTarih tarih)
        {
            Uri    adres           = new Uri("https://sozlock.com/");
            string secilenDebeGunu = "?date=" + tarih.DuzenliTarih;

            return(adres + secilenDebeGunu);
        }
        public void SayfayiIndir(SozlockTarih tarih)
        {
            GuvenlikProtokoluEkle();

            WebClient webIstem = new WebClient();

            webIstem.DownloadFile(Adres(tarih), Dizin);
        }