I am using cefSharp version 37.0.0 in windows application. I have written custom scheme handler from which I want to redirect to an particular url for that I have written response.RedirectUrl in ProcessRequestAsync() but it's not working.
public bool ProcessRequestAsync(IRequest request, ISchemeHandlerResponse response, OnRequestCompletedHandler requestCompletedCallback)
{
response.RedirectUrl = "www.google.com";
return false;
}
Is there any thing I am missing?
I am using
cefSharp version 37.0.0in windows application. I have written custom scheme handler from which I want to redirect to an particular url for that I have writtenresponse.RedirectUrlinProcessRequestAsync()but it's not working.Is there any thing I am missing?