Last active
April 10, 2018 21:46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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