| RequestContextCanSetPreference Method  | 
Version 94.4.20 
            Returns true if the preference with the specified name can be modified
            using SetPreference. As one example preferences set via the command-line
            usually cannot be modified. This method must be called on the CEF UI thread.
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp.Core (in CefSharp.Core.dll) Version: 94.4.20.0
 Syntax
Syntaxpublic bool CanSetPreference(
	string name
)
public:
virtual bool CanSetPreference(
	String^ name
) sealed
Parameters
- name
- Type: SystemString
 preference key
Return Value
Type: 
BooleanReturns true if the preference with the specified name can be modified
            using SetPreference
Implements
IRequestContextCanSetPreference(String) Remarks
RemarksUse Cef.UIThreadTaskFactory to execute this method if required,
            
OnContextInitialized and ChromiumWebBrowser.IsBrowserInitializedChanged are both
            executed on the CEF UI thread, so can be called directly.
            When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
            application thread will be the CEF UI thread.
 See Also
See Also