Click or drag to resize

DependencyChecker.CheckDependencies Method (Boolean, Boolean, String, String, String, String, String)

Version 100.0.140
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: 100.0.140.0 (100.0.140.0)
Syntax
public static List<string> CheckDependencies(
	bool checkOptional,
	bool packLoadingDisabled,
	string managedLibPath,
	string nativeLibPath,
	string resourcesDirPath,
	string browserSubProcessPath,
	string localePackFile = "locales\en-US.pak"
)

Parameters

checkOptional
Type: System.Boolean
check to see if optional dependencies are present
packLoadingDisabled
Type: System.Boolean
Is loading of pack files disabled?
managedLibPath
Type: System.String
path to check for mangaed dependencies
nativeLibPath
Type: System.String
path to check for native (unmanged) dependencies
resourcesDirPath
Type: System.String
The path to the resources directory, if empty the Executing Assembly path is used.
browserSubProcessPath
Type: System.String
The path to a separate executable that will be launched for sub-processes.
localePackFile (Optional)
Type: System.String
The locale pack file e.g. LocalesPackFile

Return Value

Type: List<String>
List of missing dependencies, if all present an empty List will be returned
See Also