PageRenderTime 38ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/Visual Studio 2008/CSFTPDownload/FTPClientManagerStatus.cs

#
C# | 24 lines | 8 code | 1 blank | 15 comment | 0 complexity | b3727be24b269a0ee23a8d0574623d25 MD5 | raw file
  1. /****************************** Module Header ******************************\
  2. * Module Name: FTPClientStatus.cs
  3. * Project: CSFTPDownload
  4. * Copyright (c) Microsoft Corporation.
  5. *
  6. * The enum FTPClientStatus contains all status of FTPClient.
  7. *
  8. * This source is subject to the Microsoft Public License.
  9. * See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
  10. * All other rights reserved.
  11. *
  12. * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
  13. * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
  15. \***************************************************************************/
  16. namespace CSFTPDownload
  17. {
  18. public enum FTPClientManagerStatus
  19. {
  20. Idle,
  21. Downloading
  22. }
  23. }