SCAttachResult.cs 365 B

123456789101112131415161718
  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 AttachResults
  8. {
  9. OK,
  10. AlreadyAttached,
  11. }
  12. public class SCAttachResult
  13. {
  14. public AttachResults Result { get; set; }
  15. public int DebugServerVersion { get; set; }
  16. }
  17. }