Request.all_headers An object with all the request HTTP headers associated with this request. The header names are lower-cased. Returns ------- Dict[str, str]
(self)
| 388 | return mapping.from_maybe_impl(self._impl_obj.is_navigation_request()) |
| 389 | |
| 390 | def all_headers(self) -> typing.Dict[str, str]: |
| 391 | """Request.all_headers |
| 392 | |
| 393 | An object with all the request HTTP headers associated with this request. The header names are lower-cased. |
| 394 | |
| 395 | Returns |
| 396 | ------- |
| 397 | Dict[str, str] |
| 398 | """ |
| 399 | |
| 400 | return mapping.from_maybe_impl(self._sync(self._impl_obj.all_headers())) |
| 401 | |
| 402 | def headers_array(self) -> typing.List[NameValue]: |
| 403 | """Request.headers_array |
no test coverage detected