RunMode.cs 260 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Azylee.Core.ProxyUtils.SimpleProxyUtils
  6. {
  7. public enum RunMode
  8. {
  9. AllBefore,
  10. AllAfter,
  11. MethodBefore,
  12. MethodAfter
  13. }
  14. }