Method: Agoo::Response#code
- Defined in:
- ext/agoo/rresponse.c
#code ⇒ Object
call-seq: code()
Gets the HTTP status code for the response.
118 119 120 121 |
# File 'ext/agoo/rresponse.c', line 118 static VALUE code_get(VALUE self) { return INT2NUM(((agooResponse)DATA_PTR(self))->code); } |