CSBindBreakpoint.cs 457 B

1234567891011121314151617
  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 class CSBindBreakpoint
  8. {
  9. public int BreakpointHashCode { get; set; }
  10. public bool IsLambda { get; set; }
  11. public string TypeName { get; set; }
  12. public string MethodName { get; set; }
  13. public int StartLine { get; set; }
  14. public int EndLine { get; set; }
  15. }
  16. }