Postsharp - 调用汇编?
使用 Postsharp OnMethodBoundaryAspect 时,是否有某种方法可以获取发起对给定方法的调用的调用程序集? GetCallingAssembly 仅返回被调用方法所在的程序集。
注意 - 我在使用 postsharp 论坛时遇到问题,否则我会将其发布到那里。
When using a Postsharp OnMethodBoundaryAspect, is there some way to get the calling assembly that initiated the call to a given method? GetCallingAssembly just returns the assembly that the method being called is in.
Note - I am having trouble with the postsharp forums, otherwise I would have posted it there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不; 不可能。
唯一的方法是使用 System.Diagnostics.StackTrace 遍历堆栈。
No; there is no way.
The only way is to walk the stack using System.Diagnostics.StackTrace.