Click or drag to resize

UrlRequestClient Class

Version 130.1.90
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.
Inheritance Hierarchy
SystemObject
  CefSharpUrlRequestClient
    CefSharp.FluentUrlRequestClient

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
public class UrlRequestClient : IUrlRequestClient

The UrlRequestClient type exposes the following members.

Constructors
 NameDescription
Public methodUrlRequestClientInitializes a new instance of the UrlRequestClient class
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Protected 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 methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Protected 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.
Protected methodOnDownloadProgress Notifies the client of download progress.
Protected methodOnRequestComplete Notifies the client that the request has completed. Use the RequestStatus property to determine if the request was successful or not.
Protected 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.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also