public void SendReply(DAPRequest request, IDAPMessagePayload response) { var reply = new DAPResponse { type = "response", request_seq = request.seq, success = true, command = request.command, body = response }; Send(reply); }
public void SendReply(DAPRequest request, string errorText) { var reply = new DAPResponse { type = "response", request_seq = request.seq, success = false, command = request.command, message = errorText }; Send(reply); }
private void SendErrorReply(int requestSeq, string command, string errorText) { var reply = new DAPResponse { type = "response", request_seq = requestSeq, success = false, command = command, message = errorText }; Send(reply); }