protected Command(GdbEngine gdb) { if (gdb == null) { throw new ArgumentNullException("gdb"); } this.gdb = gdb; }
public TwoWayCommand(GdbEngine gdb) : base(gdb) { }
public OneWayCommand(GdbEngine gdb) : base(gdb) { }
public VoidCommand(GdbEngine gdb) : base(gdb) { }
public SyncAdapter(GdbEngine gdb) { this.gdb = gdb; responseEvent = new AutoResetEvent(false); }