Postsharp - Get Calling Assembly? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T17:29:26Z http://stackoverflow.com/feeds/question/925885 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/925885/postsharp-get-calling-assembly 0 Postsharp - Get Calling Assembly? Bob 2009-05-29T13:14:10Z 2009-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#925969 0 Answer by Gael Fraiteur for Postsharp - Get Calling Assembly? Gael Fraiteur 2009-05-29T13:31:11Z 2009-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>