I'm using Awesomium to embed a web page in a windows application. I'm trying to hook into the GET from our REST api so that when the page requests data I can access the JSON response in my C# code.
I've tried hooking into WebControl.TargetURLChanged
to no avail. I've also tried hooking into that same event on the active WebSession.View
.
Is there a way, with Awesomium or otherwise, to capture HTTP GETs made from a hosted web page and access the response data?