Using PostSharp to intercept calls to Silverlight objects? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T03:14:14Zhttp://stackoverflow.com/feeds/question/97733http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97733/using-postsharp-to-intercept-calls-to-silverlight-objects1Using PostSharp to intercept calls to Silverlight objects?Gabriel Isenberg2008-09-18T22:41:54Z2009-03-16T10:15:25Z
<p>Hi all,</p>
<p>I'm working with PostSharp to intercept method calls to objects I don't own, but my aspect code doesn't appear to be getting called. The documentation seems pretty lax in the Silverlight area, so I'd appreciate any help you guys can offer :)</p>
<p>I have an attribute that looks like:</p>
<pre><code>public class LogAttribute : OnMethodInvocationAspect
{
public override void OnInvocation(MethodInvocationEventArgs eventArgs)
{
// Logging code goes here...
}
}
</code></pre>
<p>And an entry in my AssemblyInfo that looks like:</p>
<pre><code>[assembly: Log(AttributeTargetAssemblies = "System.Windows", AttributeTargetTypes = "System.Windows.Controls.*")]
</code></pre>
<p>So, my question to you is... what am I missing? Method calls under matching attribute targets don't appear to function.</p>
http://stackoverflow.com/questions/97733/using-postsharp-to-intercept-calls-to-silverlight-objects/97773#977731Answer by MagicKat for Using PostSharp to intercept calls to Silverlight objects?MagicKat2008-09-18T22:47:23Z2008-09-18T22:55:20Z<p>I believe if you change AttributeTargetAssemblies to "PresentationFramework", it might work. (Don't have PostSharp down that well yet).</p>
<p>The Assembly for WPF is PresentationFramework.dll. The AttributeTargetAssemblies needs the dll that it should target.</p>
http://stackoverflow.com/questions/97733/using-postsharp-to-intercept-calls-to-silverlight-objects/98968#989680Answer by Joel Lucsy for Using PostSharp to intercept calls to Silverlight objects?Joel Lucsy2008-09-19T02:24:37Z2008-09-19T02:24:37Z<p>If you're trying to intercept calls within the framework (i.e., not in your own code), it won't work. PostSharp can only replace code within your own assembly.
If you're trying to intercept calls you're making, then it looks like it should work. Do you see PostSharp running in the build output?</p>
http://stackoverflow.com/questions/97733/using-postsharp-to-intercept-calls-to-silverlight-objects/644495#6444951Answer by Bryan Bailliache for Using PostSharp to intercept calls to Silverlight objects?Bryan Bailliache2009-03-13T20:23:57Z2009-03-13T20:23:57Z<p>PostSharp has a new version, which is accessed from the Downloads page link to "All Downloads". </p>
<p><a href="http://www.postsharp.org/all-downloads/postsharp-1.5" rel="nofollow">PostSharp 1.5</a>
The development branch of PostSharp including new features like support for Mono, Compact Framework or Silverlight, and aspect inheritance. Download from this branch if you want to try new features and help the community by testing new developments, and can accept inferior reliability and stability of APIes.</p>
<p>The version is currently at 1.5 CTP 3 but it has support for Silverlight.</p>
http://stackoverflow.com/questions/97733/using-postsharp-to-intercept-calls-to-silverlight-objects/649844#6498443Answer by John Feminella for Using PostSharp to intercept calls to Silverlight objects?John Feminella2009-03-16T10:15:25Z2009-03-16T10:15:25Z<p><strong>This is not possible with the present version of PostSharp.</strong></p>
<p>PostSharp works by transforming assemblies prior to being loaded by the CLR. Right now, in order to do that, two things have to happen:</p>
<ul>
<li>The assembly must be about to be loaded into the CLR; you only get one shot, and you have to take it at this point.</li>
<li>After the transformation stage has finished, you can't make any additional modifications. That means you can't modify the assembly at runtime.</li>
</ul>
<p>The newest version, 1.5 CTP 3, <a href="http://www.postsharp.org/blog/announcing-postsharp-1.5-ctp-3" rel="nofollow">removes the first of these two limitations</a>, but it is the second that's really the problem. This is, however, <a href="http://www.postsharp.org/blog/using-postsharp-at-runtime" rel="nofollow">a heavily requested feature</a>, so keep your eyes peeled:</p>
<blockquote>
<p>Users often ask if it is possible to use PostSharp at runtime, so aspects don't have to be known at compile time. Changing aspects after deployment is indeed a great advantage, since it allow support staff to enable/disable tracing or performance monitoring for individual parts of the software. <strong>One of the cool things it would enable is to apply aspects on third-party assemblies.</strong></p>
<p>If you ask whether it is possible, the short answer is yes! <strong>Unfortunately, the long answer is more complex.</strong></p>
</blockquote>
<h3>Runtime/third-party aspect gotchas</h3>
<p>The author also proceeds to outline some of the problems that happen if you allow modification at runtime:</p>
<blockquote>
<p>So now, what are the gotchas?</p>
<ul>
<li><strong>Plugging the bootstrapper.</strong> If your code is hosted (for instance in
ASP.NET or in a COM server), you
cannot plug the bootstrapper. So any
runtime weaving technology is bound to
the limitation that you should host
the application yourself.</li>
<li><strong>Be Before the CLR.</strong> If the CLR finds the untransformed assembly by its own,
it will not ask for the transformed
one. So you may need to create a new
application domain for the transformed
application, and put transformed
assemblies in its binary path. It's
maybe not a big problem.</li>
<li><strong>Strong names.</strong> Ough. If you modify an assembly at runtime, you will have to
remove its strong name. Will it work?
Yes, mostly. Of course, you have to
remove the strong names from all
references to this assembly. That's
not a problem; PostSharp supports it
out-of-the-box. But there is something
PostSharp cannot help with: if there
are some strongly named references in
strings or files (for instance in
app.config), we can hardly find them
and transform them. So here we have a
real limitation: there cannot be
"loose references" to strongly named
assemblies: we are only able to
transform real references.</li>
<li><strong>LoadFrom.</strong> If any assembly uses Assembly.LoadFrom, Assembly.LoadFile
or Assembly.LoadBytes, our
bootstrapper is skipped.</li>
</ul>
</blockquote>