IHTTPAnalyzerAddon
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
prop get set
IE


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