HttpBody |
HttpPostOptions.Built.body() |
|
HttpBody |
HttpPutOptions.Built.body() |
|
static HttpBody |
HttpBody.form(NameValuePair... data) |
Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.
|
static HttpBody |
HttpBody.form(NameValuePairs data) |
Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.
|
static HttpBody |
HttpBody.form(List<NameValuePair> data) |
Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.
|
static HttpBody |
HttpBody.form(Map<String,?> data) |
Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.
|
static HttpBody |
HttpBody.json(byte[] json) |
Creates an HTTP body with content type "application/json" and the given content.
|
static HttpBody |
HttpBody.json(String json) |
Creates an HTTP body with content type "application/json" and the given content.
|