MCPcopy Create free account
hub / github.com/Norbyte/bg3se / SendErrorReply

Method SendErrorReply

LuaDebugger/DAPStream.cs:165–177  ·  view source on GitHub ↗
(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 {

Callers 1

MainMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected