| 91 | |
| 92 | C_ATTR(method, :Local :AutoArgs) |
| 93 | void method(Context *c) { c->response()->setBody(c->request()->method()); } |
| 94 | |
| 95 | C_ATTR(isPost, :Local :AutoArgs) |
| 96 | void isPost(Context *c) { c->response()->setBody(QVariant(c->request()->isPost()).toString()); } |