如何阻止来自 FullTrust 程序集的 CAS 安全要求
我有一个 FullTrust 程序集,程序集 A,它调用第 3 方组件,程序集 B。有什么方法可以通过 A.dll.config 或在 A 的代码中,阻止任何 CAS 要求在堆栈中传播到程序集 B,哪个没有FullTrust?
如果可能的话,我不想改变机器的安全策略。
I have a FullTrust assembly, Assembly A, which calls a 3rd party component, Assembly B. Is there any way I can, via A.dll.config or in A's code, prevent any CAS demands from propagating up the stack to Assembly B, which does not have FullTrust?
I do not want to alter the machine's security policy, if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 2.0 中的沙箱 API 创建一个单独的应用程序域。 MSDN 解释它比我更好。 当然,然后你要对应用程序域进行编组; 但如果你想要孤立,那就是你必须付出的代价。
You could create a separate appdomain, using the sandboxing API in 2.0. MSDN explains it far better than I can. Of course then you're marshalling over appdomains; but if you want isolation that's the price you have to pay.