Exemple #1
0
 private void myFTP_Closed(object sender, FTPConnectionEventArgs e)
 {
     if (this.Closed != null && !retrying)
     {
         this.Closed(this, new EventArgs());
     }
 }
Exemple #2
0
 private void myFTP_Connecting(object sender, FTPConnectionEventArgs e)
 {
     if (this.Connecting != null)
     {
         this.Connecting(this, new EventArgs());
     }
 }
Exemple #3
0
 private void myFTP_Connected(object sender, FTPConnectionEventArgs e)
 {
     if (this.Connected != null && e.IsConnected)
     {
         this.Connected(this, new EventArgs());
     }
 }
Exemple #4
0
 void ftp_Connecting(object sender, FTPConnectionEventArgs e)
 {
     CheckSequence("ftp_Connecting", true, EV_2);
 }
Exemple #5
0
 void ftp_Connected(object sender, FTPConnectionEventArgs e)
 {
     CheckSequence("ftp_Connected", true, EV_3);
 }