Skip to content

Instantly share code, notes, and snippets.

@vwmberry95
Last active April 10, 2018 21:46
using CefSharp;
namespace WindowsFormsApp1
{
public class LocalSchemeHandlerFactory : ISchemeHandlerFactory
{
public IResourceHandler Create(IBrowser browser, IFrame frame, string schemeName, IRequest request)
{
return ResourceHandler.FromFilePath("home.html");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment