/Debugger/Debugger.Core/PausedReason.cs

http://github.com/icsharpcode/ILSpy · C# · 22 lines · 19 code · 1 blank · 2 comment · 0 complexity · c489180efb0923f92abf104a1e640a6b MD5 · raw file

  1. // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
  2. // This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
  3. namespace Debugger
  4. {
  5. public enum PausedReason : int
  6. {
  7. EvalComplete,
  8. StepComplete,
  9. Breakpoint,
  10. Break,
  11. ControlCTrap,
  12. Exception,
  13. ForcedBreak, // Process.Break called
  14. DebuggerError,
  15. CurrentThreadChanged,
  16. CurrentFunctionChanged,
  17. ExceptionIntercepted,
  18. SetIP,
  19. Other
  20. }
  21. }