Method
SendErrorReply
(int requestSeq, string command, string errorText)
Source from the content-addressed store, hash-verified
| 163 | } |
| 164 | |
| 165 | public void SendErrorReply(int requestSeq, string command, string errorText) |
| 166 | { |
| 167 | var reply = new DAPResponse |
| 168 | { |
| 169 | type = "response", |
| 170 | request_seq = requestSeq, |
| 171 | success = false, |
| 172 | command = command, |
| 173 | message = errorText |
| 174 | }; |
| 175 | |
| 176 | Send(reply); |
| 177 | } |
| 178 | |
| 179 | public void SendEvent(string command, IDAPMessagePayload body) |
| 180 | { |
Tested by
no test coverage detected