Update 1.3.0.md

Added note about Response::getBody()
This commit is contained in:
Benedikt-Alexander Mokroß 2021-08-17 16:42:44 +02:00 committed by GitHub
parent 8746616841
commit d4b301a818
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ Contents:
- [The New oatpp::String](#the-new-oatppstring)
- [ConnectionPool::get() Timeout](#connectionpoolget-timeout)
- [JSON Serializer Escape Flags](#json-serializer-escape-flags)
- [Response::getBody()](#responsegetbody)
## The New oatpp::String
@ -118,3 +118,6 @@ Output:
res='"https://oatpp.io/"' # solidus isn't escaped
```
## Response::getBody()
`oatpp::web::protocol::http::outgoing::Response` has a new method `getBody()` to retreive the body of the response. This is handy for response interceptors.