Im new to .NET and WPF so i hope i will ask the question correctly. I am using INotifyPropertyChanged implemented using PostSharp 1.5:
I\'d like the aspect to exit a method invocation based on a condition like the following: [AttributeUsage(AttributeTargets.Method)]
I would like to define a constrait on my custom (PostSharp) attribute. My goal is to get error or warning while compile time, if class X dont implements Y interface but it has my attribute.
I tried to use code protection (code is encrypted and can\'t be reflected) made by clisecure with postsharp but secured dlls won\'t compile when post sharp is used in solution. I use just PostSharp.La
Using PostSharp, is it possible to only \"attach\" to methods having the WebMethod-attribute? Ex: [Trace][WebService]
So I\'m looking at PostSharp and I noticed that this isn\'t using runtime generated proxies but it is actually giving hints to the compilation process to include the aspects w开发者_开发百科ithin the
Presently, I am checking th开发者_JS百科e method name in the OnMethodBoundaryAspect.OnExit method:
I would like to run profiling code against some services running in testing and production. My plan is to use PostSharp to implement a class that looks like
We have an application here which is using postsharp to wrap certain methods within a transaction aspect derived from MethodInterceptionAspect. We use NHibernate 2.0 as an ORM for the application. The
I have stumbled on an impossibly good performance behaviour with PostSharp. To evaluate the speed I wrote a little program, that would execute one function a specified number of times, and if PostShar