| DependencyCheckerCheckDependencies Method (Boolean, Boolean, String, String, String, String) | 
Version 90.6.50 
            CheckDependencies iterates through the list of Cef and CefSharp dependencines
            relative to the path provided and returns a list of missing ones
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 90.6.50.0 (90.6.50.0)
 Syntax
Syntaxpublic static List<string> CheckDependencies(
	bool checkOptional,
	bool packLoadingDisabled,
	string path,
	string resourcesDirPath,
	string browserSubProcessPath,
	string localePackFile = "locales\en-US.pak"
)
public:
static List<String^>^ CheckDependencies(
	bool checkOptional, 
	bool packLoadingDisabled, 
	String^ path, 
	String^ resourcesDirPath, 
	String^ browserSubProcessPath, 
	String^ localePackFile = L"locales\en-US.pak"
)
Parameters
- checkOptional
- Type: SystemBoolean
 check to see if optional dependencies are present
- packLoadingDisabled
- Type: SystemBoolean
 Is loading of pack files disabled?
- path
- Type: SystemString
 path to check for dependencies
- resourcesDirPath
- Type: SystemString
 The path to the resources directory, if empty the Executing Assembly path is used.
- browserSubProcessPath
- Type: SystemString
 The path to a separate executable that will be launched for sub-processes.
- localePackFile (Optional)
- Type: SystemString
 The locale pack file e.g. LocalesPackFile
Return Value
Type: 
ListStringList of missing dependencies, if all present an empty List will be returned
 See Also
See Also