PageRenderTime 64ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSFTPDownload/FTPDirectoryListingStyle.cs

#
C# | 24 lines | 8 code | 1 blank | 15 comment | 0 complexity | 3ce1227ee71a29ce667b190c1c380a68 MD5 | raw file
  1. /****************************** Module Header ******************************\
  2. * Module Name: FTPDirectoryListingStyle.cs
  3. * Project: CSFTPDownload
  4. * Copyright (c) Microsoft Corporation.
  5. *
  6. * The enum FTPDirectoryListingStyle contains the FTP Directory Listing Styles.
  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 FTPDirectoryListingStyle
  19. {
  20. MSDOS = 0,
  21. UNIX = 1
  22. }
  23. }