PageRenderTime 1123ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSFTPDownload/NewMessageEventArg.cs

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