Ejemplo n.º 1
0
 public void OnConnected(
     object sender,
     SmtpStatusEventArgs e
     )
 {
     TextStatus.Text = "Connected";
 }
Ejemplo n.º 2
0
 private void OnSecuring(
     object sender,
     SmtpStatusEventArgs e
     )
 {
     TextStatus.Text = "Securing ... ";
 }
Ejemplo n.º 3
0
 private void OnAuthorized(
     object sender,
     SmtpStatusEventArgs e
     )
 {
     TextStatus.Text = "Authorized";
 }
Ejemplo n.º 4
0
 private void OnAuthorized(
     object sender,
     SmtpStatusEventArgs e
 )
 {
     textStatus.Text = "Authorized";
 }
Ejemplo n.º 5
0
 private  void OnSecuring(
     object sender,
     SmtpStatusEventArgs e
 )
 {
     textStatus.Text = "Securing ... ";
 }
Ejemplo n.º 6
0
        public void OnConnected(
            object sender,
            SmtpStatusEventArgs e
            )
        {
            SmtpClient smtp  = sender as SmtpClient;
            int        index = (int)smtp.Tag;

            UpdateRecipientItem(index, "Connected");
        }
Ejemplo n.º 7
0
        private void OnAuthorized(
            object sender,
            SmtpStatusEventArgs e
            )
        {
            SmtpClient smtp  = sender as SmtpClient;
            int        index = (int)smtp.Tag;

            UpdateRecipientItem(index, "Authorized");
        }
Ejemplo n.º 8
0
        private void OnSecuring(
            object sender,
            SmtpStatusEventArgs e
            )
        {
            SmtpClient smtp  = sender as SmtpClient;
            int        index = (int)smtp.Tag;

            UpdateRecipientItem(index, "Securing ... ");
        }
Ejemplo n.º 9
0
 public void OnConnected(
     object sender,
     SmtpStatusEventArgs e
 )
 {
     textStatus.Text = "Connected";
 }
Ejemplo n.º 10
0
 public void OnConnected( 
     object sender,
     SmtpStatusEventArgs e
 )
 {
     SmtpClient oSmtp = sender as SmtpClient;
     int index = (int)oSmtp.Tag;
     UpdateRecipientItem(index, "Connected");
 }
Ejemplo n.º 11
0
 private void OnAuthorized(
     object sender,
     SmtpStatusEventArgs e
 )
 {
     SmtpClient oSmtp = sender as SmtpClient;
     int index = (int)oSmtp.Tag;
     UpdateRecipientItem(index, "Authorized");
 }
Ejemplo n.º 12
0
 private void OnSecuring(
     object sender,
     SmtpStatusEventArgs e
 )
 {
     SmtpClient oSmtp = sender as SmtpClient;
     int index = (int)oSmtp.Tag;
     UpdateRecipientItem( index,  "Securing ... " );
 }