NotifyUpdateFileInfoEventArgs.cs 549 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. namespace Microsoft.Samples.AppUpdater
  3. {
  4. public class NotifyUpdateFileInfoEventArgs : EventArgs
  5. {
  6. private int _FileTotal;
  7. private int _CurrentFile;
  8. private string _FileName;
  9. public int FileTotal
  10. {
  11. get
  12. {
  13. return _FileTotal;
  14. }
  15. set
  16. {
  17. _FileTotal = value;
  18. }
  19. }
  20. public int CurrentFile
  21. {
  22. get
  23. {
  24. return _CurrentFile;
  25. }
  26. set
  27. {
  28. _CurrentFile = value;
  29. }
  30. }
  31. public string FileName
  32. {
  33. get
  34. {
  35. return _FileName;
  36. }
  37. set
  38. {
  39. _FileName = value;
  40. }
  41. }
  42. }
  43. }