Click or drag to resize

CefResourceHandlerGetResponseHeaders Method

Retrieve response header information. If the response length is not known set |response_length| to -1 and ReadResponse() will be called until it returns false. If the response length is known set |response_length| to a positive value and ReadResponse() will be called until it returns false or the specified number of bytes have been read. Use the |response| object to set the mime type, http status code and other optional header values. To redirect the request to a new URL set |redirectUrl| to the new URL. If an error occured while setting up the request you can call SetError() on |response| to indicate the error condition.

Namespace:  Internal.Xilium.CefGlue
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
protected abstract void GetResponseHeaders(
	CefResponse response,
	out long responseLength,
	out string redirectUrl
)

Parameters

response
Type: Internal.Xilium.CefGlueCefResponse
responseLength
Type: SystemInt64
redirectUrl
Type: SystemString
See Also