getAllResponseHeaders method
The XMLHttpRequest method
getAllResponseHeaders()
returns all the response
headers, separated by , as a string, or returns null
if no response has been received.
If a network error happened, an empty string is returned.
Note: For multipart requests, this returns the headers from the current part of the request, not from the original channel.
Implementation
external String getAllResponseHeaders();