SCBindBreakpointResult.cs 408 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ILRuntime.Runtime.Debugger.Protocol
  6. {
  7. public enum BindBreakpointResults
  8. {
  9. OK,
  10. TypeNotFound,
  11. CodeNotFound,
  12. }
  13. public class SCBindBreakpointResult
  14. {
  15. public int BreakpointHashCode { get; set; }
  16. public BindBreakpointResults Result { get; set; }
  17. }
  18. }