예제 #1
0
파일: FTPServer.cs 프로젝트: iam7roni/FTP
 public void Dispose()
 {
     if (FTPCommandListner != null)
     {
         bClose = true;
         Thread.CurrentThread.Join(1000);
         if (FTPCommandListner.Pending())
         {
             FTPCommandListner.Stop();
         }
         //FTPCommandListner.Stop();
     }
 }