检测调用者是否有权访问我的程序集内部结构
我需要在方法中检测其调用者是否具有对我的程序集的内部访问权限。也就是说,如果 a) 代码位于同一程序集中,或者 b) 与我的程序集具有 InternalsVisibleTo 关系。理想情况下,检查应该很快。
我有什么选择?
更新: 如果问题的一部分有一个好的解决方案,我也会部分满意。
I need to detect in a method if its caller has internal access to my assembly. That is, if it is a) code in the same assembly or b) has a InternalsVisibleTo relationship with my assembly. Ideally the check should be fast.
What are my options?
UPDATE:
I would also be partially satisfied if there was a good solution for part a of the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 System.Diagnostics.StackTrace
a) 只需将当前程序集与 a
b) 我认为您应该能够挑选出程序集上的 InternalsVisibleTo 属性
Look into System.Diagnostics.StackTrace
a) just compare current assembly to a
b) i think you should be able to pick out the InternalsVisibleTo attributes on the assembly