Пример #1
0
 private void ProceedCommand(FTPCommand Command)
 {
     m_CurrentCommand = Command;
     if (m_cmdList.Count > 0)
     {
         m_NextCommand = (FTPCommand)m_cmdList[0];
     }
     else
     {
         m_NextCommand = null;
     }
     CommandNotify(Command.GetCommandLine());
     m_cmdSock.Send(Command.GetCommandLine());
 }
Пример #2
0
 private void ProceedCommand(FTPCommand Command)
 {
     m_CurrentCommand = Command;
     if (m_cmdList.Count > 0)
         m_NextCommand = (FTPCommand) m_cmdList[0];
     else
         m_NextCommand = null;
     CommandNotify(Command.GetCommandLine());
     m_cmdSock.Send(Command.GetCommandLine());
 }