Click or drag to resize

RequestContextHandlerOnInitialize Method

Version 94.4.20
The ActionT is executed when the RequestContext has been initialized, after the preferences/proxy preferences have been set, before OnRequestContextInitialized.

Namespace:  CefSharp.Handler
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public RequestContextHandler OnInitialize(
	Action<IRequestContext> onContextInitialziedAction
)

Parameters

onContextInitialziedAction
Type: SystemActionIRequestContext
action to perform on context initialize

Return Value

Type: RequestContextHandler
A RequestContextHandler instance allowing you to chain multiple AddPreference calls together
Remarks
Only a single action reference is maintained, multiple calls will result in the previous action reference being overriden.
See Also