PageRenderTime 152ms CodeModel.GetById 41ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSFTPDownload/ErrorEventArgs.cs

#
C# | 26 lines | 8 code | 2 blank | 16 comment | 0 complexity | f96593695c9e67cd8a0ca153b2639287 MD5 | raw file
  1. /****************************** Module Header ******************************\
  2. * Module Name: ErrorEventArgs.cs
  3. * Project: CSFTPDownload
  4. * Copyright (c) Microsoft Corporation.
  5. *
  6. * The class ErrorEventArgs defines the arguments used by the ErrorOccurred
  7. * 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. namespace CSFTPDownload
  19. {
  20. public class ErrorEventArgs:EventArgs
  21. {
  22. public Exception ErrorException { get; set; }
  23. }
  24. }