RequestContextHandlerOnInitialize Method  | 
Version 104.4.240 
            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: 104.4.240.0 (104.4.240.0)
Syntaxpublic RequestContextHandler OnInitialize(
	Action<IRequestContext> onContextInitialziedAction
)
public:
RequestContextHandler^ OnInitialize(
	Action<IRequestContext^>^ onContextInitialziedAction
)
Parameters
- onContextInitialziedAction
 - Type: SystemActionIRequestContext
action to perform on context initialize 
Return Value
Type: 
RequestContextHandlerA 
RequestContextHandler instance allowing you to chain multiple AddPreference calls together 
RemarksOnly a single action reference is maintained, multiple calls will result in the
            previous action reference being overriden.
See Also