ProgressDelegate.cs 665 B

12345678910111213141516171819
  1. //************************************************************************
  2. // author: yuzhengyang
  3. // date: 2018.3.27 - 2018.6.3
  4. // desc: 工具描述
  5. // Copyright (c) yuzhengyang. All rights reserved.
  6. //************************************************************************
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. namespace Azylee.Core.DelegateUtils.ProcessDelegateUtils
  12. {
  13. public class ProgressDelegate
  14. {
  15. //public delegate void ProgressHandler(long current, long total);
  16. public delegate void ProgressHandler(object sender, ProgressEventArgs e);
  17. }
  18. }