Пример #1
0
        void al_GirisOnayCompleted(object sender, GirisOnayCompletedEventArgs e)
        {
            if (e.Result)
            {
                client.GirisParolaKontrolAsync(txtParola.Text, txtEmail.Text);
                client.GirisParolaKontrolCompleted += new EventHandler <GirisParolaKontrolCompletedEventArgs>(al_GirisParolaKontrolCompleted);
            }
            else
            {
                MessageBox.Show("Bu Email Adresi Onaylı Değildir!");

                txtEmail.Text  = string.Empty;
                txtParola.Text = string.Empty;
            }
        }
Пример #2
0
        void al_GirisOnayCompleted(object sender, GirisOnayCompletedEventArgs e)
        {
            if (e.Result)
            {
                client.GirisParolaKontrolAsync(txtParola.Text, txtEmail.Text);
                client.GirisParolaKontrolCompleted += new EventHandler<GirisParolaKontrolCompletedEventArgs>(al_GirisParolaKontrolCompleted);
            }
            else
            {
                MessageBox.Show("Bu Email Adresi Onaylı Değildir!");

                txtEmail.Text = string.Empty;
                txtParola.Text = string.Empty;
            }
        }