Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 .NET 中为 Webbrowser Control 实现 IHttpSecurity?
我找不到任何示例,所有示例都在 C++ 中,MSDN 文档也仅适用于 C++
为此,您将不得不使用 COM 互操作。在 IDL 文件 (urlmon.idl) 中查找接口的 IID (guid),然后在代码中重新创建接口。您可能必须将 PreserveSig 属性附加到 OnSecurityProblem 接口,以便可以返回适当的错误代码。