gpt4 book ai didi

c# - 在抛出未处理的 JavaScript 错误之前,不查询 IServiceProvider IElementBehaviorFactory

转载 作者:太空狗 更新时间:2023-10-29 23:39:00 26 4
gpt4 key购买 nike

我正在为 .net WebBrowser 控件提供自定义命名空间和二进制行为,它在特定情况下工作得很好。使用以下代码,断点(标记为 )全部命中并且我的命名空间已正确实现并具有完整的行为:

int IServiceProvider.QueryService(ref Guid guidService, ref Guid riid, out IntPtr ppvObject)
{
int hr = Native.E_NOINTERFACE;
ppvObject = IntPtr.Zero;

if (riid == IidClsid.IID_IElementBehaviorFactory)
{
// Returning S_OK tells the html host to query for our IHostBehaviorInit.
● hr = Native.S_OK;
}
else if (riid == IidClsid.IID_IHostBehaviorInit)
{
ppvObject = Marshal.GetComInterfaceForObject(this, typeof(IHostBehaviorInit));
● hr = Native.S_OK;
}
else if (guidService == IidClsid.IID_IInternetSecurityManager)
{
ppvObject = Marshal.GetComInterfaceForObject(this, typeof(IInternetSecurityManager));
● hr = Native.S_OK;
}
return hr;
}

但是,第一个和第二个断点只是因为测试页面中的脚本错误而命中。如果我修复错误或抑制错误,断点永远不会命中。例如,以下代码会阻止我的 namespace 和行为被注册:

WebBrowser.Document.Window.Error += OnWebBrowserDocumentWindowError;

public void OnWebBrowserDocumentWindowError (object sender, IHTMLEventObj e)
{
e.Handled = true;
}

这就是MSDN documentation for IHostBehaviorInit说:

MSHTML calls the host application's IServiceProvider::QueryService to request the IElementBehaviorFactory interface, and requests the host for the IHostBehaviorInit interface. If the IHostBehaviorInit interface is available, MSHTML calls the IHostBehaviorInit::PopulateNamespaceTable method. The host application can then query MSHTML for the IElementNamespaceTable interface and use the IElementNamespaceTable::AddNamespace method to append additional namespaces to the namespace table.

我注意到,如果我点击 <select>打开下拉列表,一下子碰到了第一个和第二个断点。这真的很奇怪,谁能帮我解决这个问题?

最佳答案

这可能不会直接回答问题,但对于简单的评论来说太长了。

为什么前两种情况比较riid而不是guidService?对我来说看起来像是一个错误,请改用 guidService

此外,一旦确定了所请求的服务,就不应使用 Marshal.GetComInterfaceForObject,因为 riidguidService 可能不同。相反,使用 Marshal.GetIUnknownForObjectMarshal.QueryInterface:

IntPtr unk = Marshal.GetIUnknownForObject(this);
try
{
return Marshal.QueryInterface(unk, ref riid, out ppvObject);
}
finally
{
Marshal.Release(unk);
}

此外,您实现IServiceProvider 的方式可能会影响 MSHTML 获取它的方式。我建议你使用 IProfferService为了这。我有一个关于如何将 IProfferServiceWebBrowser 一起使用的完整示例 here .

关于c# - 在抛出未处理的 JavaScript 错误之前,不查询 IServiceProvider IElementBehaviorFactory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22095747/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com