Stories recently tagged with 'aspect'

PostSharp Principals(programmersunlimited.wordpress.com)

submitted by titan2782titan2782(27) 10 months, 20 days ago

Learn how to use the features of PostSharp to get the most out of Aspect Oriented Programming. read more...

add a comment |category: |Views: 14

tags: another

Aspects and on-hover descriptions(mylemans.com)

submitted by Gecko1986Gecko1986(35) 1 year, 1 month ago

Always wanted to add a description telling you exactly what an applied PostSharp aspect does, when hovering over the marked field/property/method/class/...? PostSharp does not have such a feature, but I found a way! Look inside for the result. read more...

add a comment |category: |Views: 0

tags: another

Async Aspect(mylemans.com)

submitted by Gecko1986Gecko1986(35) 1 year, 2 months ago

Hate making threads manually to call methods in an async (non blocking) way, while you know that the method should always run on a seperate thread? Then I advise you to try out this PostSharp aspect : Async Attach the [Async] aspect to any method, and from that point on every call to that method will run it in a seperate thread. You can also refine how the method should be run. Will only work on methods that do not return anything ('void' methods) read more...

add a comment |category: |Views: 12

tags: another

WPF + INotifyPropertyChanged Proxy = Epic Fail!(realfiction.net)

submitted by fquednaufquednau(404) 4 years ago

Sending property changed events when a property is changed is repetitive boilerplate code that can be factored out into an aspect of your system's behaviour. This can be done with a proxy generator library like the Castle's DynamicProxy2. Alas, it is not as pretty as it seems... read more...

add a comment |category: |Views: 141

tags: another

Spring.AOP, Castle.DynamicProxy2 - first glance from an outsider(realfiction.net)

submitted by fquednaufquednau(404) 4 years ago

A first look at the two "aspect oriented" frameworks and a rough indicator what it means performance-wise to use them. read more...

add a comment |category: |Views: 68

tags: another