IResourceHandlerGetResponseHeaders Method |
Version 87.1.132
Retrieve response header information. If the response length is not known
set
responseLength to -1 and ReadResponse() will be called until it
returns false. If the response length is known set
responseLength
to a positive value and ReadResponse() will be called until it returns
false or the specified number of bytes have been read.
It is also possible to set
response to a redirect http status code
and pass the new URL via a Location header. Likewise with
redirectUrl it
is valid to set a relative or fully qualified URL as the Location header
value. If an error occured while setting up the request you can call
ErrorCode on
response to indicate the error condition.
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 87.1.132.0 (87.1.132.0)
Syntax void GetResponseHeaders(
IResponse response,
out long responseLength,
out string redirectUrl
)
void GetResponseHeaders(
IResponse^ response,
[OutAttribute] long long% responseLength,
[OutAttribute] String^% redirectUrl
)
Parameters
- response
- Type: CefSharpIResponse
Use the response object to set the mime type, http status code and other optional header values. - responseLength
- Type: SystemInt64
If the response length is not known set responseLength to -1 - redirectUrl
- Type: SystemString
To redirect the request to a new URL set this to the new URL. Can be either a relative or fully qualified URL.
See Also