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