CefSharp custom SchemeHandler
Iam using CefSharp's SchemeHandler in order to grab resources from my C# project like .css , .js or .png files using a custom url for example custom://cefsharp/assets/css/style.css I've 2 custom classes in order to archive this. First class, MyCustomSchemeHandlerFactory will be the one that handles the custom Scheme and it looks like this, where "custom" will be the custom scheme: internal class MyCustomSchemeHandlerFactory : ISchemeHandlerFactory { public const string SchemeName = "custom"; public IResourceHandler Create(IBrowser browser, IFrame frame, string schemeName, IRequest request) {