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