Click or drag to resize

DefaultRequestHandler Class

Version 75.1.140

Note: This API is now obsolete.

Default implementation of IRequestHandler. This class provides default implementations of the methods from IRequestHandler, therefore providing a convenience base class for any custom request handler.
Inheritance Hierarchy
SystemObject
  CefSharp.HandlerDefaultRequestHandler

Namespace:  CefSharp.Handler
Assembly:  CefSharp (in CefSharp.dll) Version: 75.1.140.0 (75.1.140.0)
Syntax
[ObsoleteAttribute("This class is now obsolete, inherit from RequestHandler instead.")]
public class DefaultRequestHandler : IRequestHandler

The DefaultRequestHandler type exposes the following members.

Constructors
  NameDescription
Public methodDefaultRequestHandler
Initializes a new instance of the DefaultRequestHandler class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetAuthCredentials
Called when the browser needs credentials from the user.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetResourceRequestHandler
Called on the CEF IO thread before a resource request is initiated.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodOnBeforeBrowse
Called before browser navigation. If the navigation is allowed FrameLoadStart and FrameLoadEnd will be called. If the navigation is canceled LoadError will be called with an ErrorCode value of Aborted.
Public methodOnCertificateError
Called to handle requests for URLs with an invalid SSL certificate. Return true and call Continue(Boolean) either in this method or at a later time to continue or cancel the request. If CefSettings.IgnoreCertificateErrors is set all invalid certificates will be accepted without calling this method.
Public methodOnOpenUrlFromTab
Called on the UI thread before OnBeforeBrowse in certain limited cases where navigating a new or different browser might be desirable. This includes user-initiated navigation that might open in a special way (e.g. links clicked via middle-click or ctrl + left-click) and certain types of cross-origin navigation initiated from the renderer process (e.g. navigating the top-level frame to/from a file URL).
Public methodOnPluginCrashed
Called when a plugin has crashed
Public methodOnQuotaRequest
Called when JavaScript requests a specific storage quota size via the webkitStorageInfo.requestQuota function. For async processing return true and execute Continue(Boolean) at a later time to grant or deny the request or Cancel to cancel.
Public methodOnRenderProcessTerminated
Called when the render process terminates unexpectedly.
Public methodOnRenderViewReady
Called on the CEF UI thread when the render view associated with browser is ready to receive/handle IPC messages in the render process.
Public methodOnSelectClientCertificate
Called when the browser needs user to select Client Certificate for authentication requests (eg. PKI authentication).
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also