SetBodyString sets response body to the given value.
(body string)
| 1497 | |
| 1498 | // SetBodyString sets response body to the given value. |
| 1499 | func (ctx *RequestCtx) SetBodyString(body string) { |
| 1500 | ctx.Response.SetBodyString(body) |
| 1501 | } |
| 1502 | |
| 1503 | // ResetBody resets response body contents. |
| 1504 | func (ctx *RequestCtx) ResetBody() { |
no outgoing calls
no test coverage detected