Hello,
I have implemented a Custom Handler based on your examples. When running, the application goes into the
Code: C#
public override bool Match(Request request)
{
return true;
}
but never goes into Process
Code: C#
public override void ProcessRequest(Request request, Response response)
{
}
Instead the LoadFailed event fires with a Generic error.
I downloaded the latest version from your website.
In my constructor, after creating the webBrowser, I call
Code: C#
browser.WebView.LoadUrl("sample://embed");
I have registered
Code: C#
EO.WebEngine.Engine.Default.Options.RegisterCustomSchemes("sample");
Can you help ? Why wouldn't it go into Process if I return true in Match ?
Thanks