Gokhan Yurt
Posts: 1
Joined: 2013-02-04
|
I'm trying to write an addon for a parental control system and I need to get all the request made from IE. OnRequest event seems the most proper event to use but it doesn't fire at all.
private void IEModule_OnRequest(object sender, ADXIERequestEventArgs e)
{
MessageBox.Show("Request Url: " + e.Url);
}
There's not lots of lines where I could make a mistake, its just one line. I would appreciate any help.
Thanks, |
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
Hi Gokhan,
You just need to set the 'HandleHTTPNegotiations' property of the iemodule to true. |
|