从 Internet Explorer 外部调用 Jscript 分析器?
我一直无法找到信息,但它可能很简单。 使用 IE8,您可以分析您的代码(F12),有没有办法在实现 IWebBrowser2 接口的对象上调用此分析器?
基本上,我已经 CHtmlViews 托管一个 IWebBrowser2 对象。我想在这些对象上使用新的探查器,这可能吗? (我找不到比.Net 3.0更新的文档)
谢谢...
I've been unable to find the information but It may be quite simple.
Using IE8, you can profile your code (F12), is there a way to invoke this profiler on an object implementing the IWebBrowser2 interface ?
Basically, i've CHtmlViews hosting a IWebBrowser2 object. I'd like to use the new profiler on these objects, is this possible ? (i can't find a documentation more recent than .Net 3.0)
thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用于分析的接口不在 IWebBrowser2 上,而是在 JavaScript 引擎上,并且可以在引擎的任何主机中找到。它的文档位于:
http://msdn.microsoft.com /en-us/subscriptions/downloads/cc836486(v=vs.94).aspx
唉,让你自己的分析器运行起来并不容易。如果您可以使用 IE11 或 IE11 收集 ETW 跟踪,这将是在 F12 或 VS 之外分析 IE 的最佳选择。
The interfaces for profiling aren't on IWebBrowser2 but rather on the JavaScript engine and can be found in any host of the engine. Documentation for it is over at:
http://msdn.microsoft.com/en-us/subscriptions/downloads/cc836486(v=vs.94).aspx
Alas it's not easy to get your own profiler going. If you can use IE11 or IE11 collecting an ETW trace would be your best bet for profiling IE outside of F12 or VS.