You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Perform a HTTP PUT request and track the Android Context which initiated the request.
415
+
* And set one-time headers for the request
375
416
* @param context the Android Context which initiated the request.
376
417
* @param url the URL to send the request to.
377
418
* @param entity a raw {@link HttpEntity} to send with the request, for example, use this to send string/json/xml payloads to a server by passing a {@link org.apache.http.entity.StringEntity}.
* Perform a HTTP PUT request and track the Android Context which initiated the request.
428
+
* And set one-time headers for the request
429
+
* @param context the Android Context which initiated the request.
430
+
* @param url the URL to send the request to.
431
+
* @param headers set one-time headers for this request
432
+
* @param entity a raw {@link HttpEntity} to send with the request, for example, use this to send string/json/xml payloads to a server by passing a {@link org.apache.http.entity.StringEntity}.
433
+
* @param contentType the content type of the payload you are sending, for example application/json if sending a json payload.
434
+
* @param responseHandler the response handler instance that should handle the response.
0 commit comments