Click or drag to resize

IUrlRequestClient Interface

Version 86.0.240
Interface that should be implemented by the CefURLRequest client. The methods of this class will be called on the same thread that created the request unless otherwise documented.

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public interface IUrlRequestClient

The IUrlRequestClient type exposes the following members.

Methods
  NameDescription
Public methodGetAuthCredentials
Called on the CEF IO thread when the browser needs credentials from the user. This method will only be called for requests initiated from the browser process.
Public methodOnDownloadData
Called when some part of the response is read. This method will not be called if the NoDownloadData flag is set on the request.
Public methodOnDownloadProgress
Notifies the client of download progress.
Public methodOnRequestComplete
Notifies the client that the request has completed. Use the RequestStatus property to determine if the request was successful or not.
Public methodOnUploadProgress
Notifies the client of upload progress. This method will only be called if the UR_FLAG_REPORT_UPLOAD_PROGRESS flag is set on the request.
Top
See Also