IHTTPAnalyzerAddon (IE Addon)
Top  Previous  Next

The IHTTPAnalyzerAddon object is used to control the HTTPAnalyzer IE Add-on.

General methods and properties.

IHTTPAnalyzerAddon is inherited from IHTTPAnalyzer.

method
AttachIE
method
NavigateAndWait
method
DeleteAllCache
method
DeleteAllCookies
method
DeleteCacheForRecordedURLs
method
DeleteCookiesForRecordedURLs
prop get set
IE
prop get set
Visible


Examples
JavaScript example:
var addon=new ActiveXObject("IEHTTPAnalyzer.HTTPAnalyzerAddOn");
addon.start();
addon.NavigateAndWait("http://www.ieinspector.com"
, -1);
.........

addon.Stop();

for (var index = 0
; index < addon.Log.Count; ++index )
{
   var entry = addon.Log.Item(index);
   //do something

}



See Also
IHTTPAnalyzer
IHTTPAnalyzerStandalone