Skip to content

Instantly share code, notes, and snippets.

@vwmberry95
Last active April 10, 2018 21:46
Show Gist options
  • Save vwmberry95/d7620de56a98f1060726704112c1f421 to your computer and use it in GitHub Desktop.
Save vwmberry95/d7620de56a98f1060726704112c1f421 to your computer and use it in GitHub Desktop.
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