public function Response::getTransferEncoding

Get the Transfer-Encoding HTTP header

Return value

string|null The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked

1 call to Response::getTransferEncoding()
Response::canCache in drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Response.php
Check if the response can be cached

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Response.php, line 672

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

public function getTransferEncoding() {
  return $this
    ->getHeader('Transfer-Encoding', true);
}