RequestContextExtensionsLoadExtensionFromDirectory Method |
Version 101.0.180
Load an extension from the given directory. To load a crx file you must unzip it first.
For further details see
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 101.0.180.0 (101.0.180.0)
Syntax public static void LoadExtensionFromDirectory(
this IRequestContext requestContext,
string rootDirectory,
IExtensionHandler handler
)
public:
[ExtensionAttribute]
static void LoadExtensionFromDirectory(
IRequestContext^ requestContext,
String^ rootDirectory,
IExtensionHandler^ handler
)
Parameters
- requestContext
- Type: CefSharpIRequestContext
request context - rootDirectory
- Type: SystemString
absolute path to the directory that contains the extension to be loaded. - handler
- Type: CefSharpIExtensionHandler
handle events related to browser extensions
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IRequestContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also