PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/Visual Studio 2008/CSFTPDownload/FileDownloadCompletedEventArgs.cs

#
C# | 28 lines | 10 code | 2 blank | 16 comment | 0 complexity | 973c6333090e797e02b8c908ccd6954b MD5 | raw file
  1. /****************************** Module Header ******************************\
  2. * Module Name: FileDownloadCompletedEventArgs.cs
  3. * Project: CSFTPDownload
  4. * Copyright (c) Microsoft Corporation.
  5. *
  6. * The class FileDownloadCompletedEventArgs defines the arguments used by the
  7. * FileDownloadCompleted event of FTPClient.
  8. *
  9. * This source is subject to the Microsoft Public License.
  10. * See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
  11. * All other rights reserved.
  12. *
  13. * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
  14. * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
  15. * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
  16. \***************************************************************************/
  17. using System;
  18. using System.IO;
  19. namespace CSFTPDownload
  20. {
  21. public class FileDownloadCompletedEventArgs : EventArgs
  22. {
  23. public Uri ServerPath { get; set; }
  24. public FileInfo LocalFile { get; set; }
  25. }
  26. }