Postsharp - Get Calling Assembly? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T17:29:26Zhttp://stackoverflow.com/feeds/question/925885http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/925885/postsharp-get-calling-assembly0Postsharp - Get Calling Assembly?Bob2009-05-29T13:14:10Z2009-05-29T13:31:11Z
<p>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.</p>
<p>Note - I am having trouble with the postsharp forums, otherwise I would have posted it there.</p>
http://stackoverflow.com/questions/925885/postsharp-get-calling-assembly/925969#9259690Answer by Gael Fraiteur for Postsharp - Get Calling Assembly?Gael Fraiteur2009-05-29T13:31:11Z2009-05-29T13:31:11Z<p>No; there is no way.</p>
<p>The only way is to walk the stack using System.Diagnostics.StackTrace.</p>
<p>-gael</p>