eo_support wrote:Hi,
Custom resource handler replaces the network layer and it is all or nothing ---- you either let the browser engine fetches the resource for you or you do it yourself. Once you do it yourself, it no longer has nothing to do with the browser engine.
I am not sure what you meant by "still allow this data to hit the WebView controller". What do you mean by "WebView controller"? The result of your custom resource handler is directly passed down to the WebView.
Thanks!
I think I see. So, if I'm interested in the response to a particular request and am using the resource handler in this way, I'll need to:
1. Intercept the request via Match
2. Send the request off at the network layer via System.Net.Http or something and collect that response myself
3. response.OutputStream.Write() the response so that it is passed down to the WebView
Hopefully I'm following correctly!