Tagged Questions
PostSharp is aspect oriented programming for .NET using attributes that encapsulate aspects.
15
votes
2answers
365 views
PostSharp and Visual Studio Code Coverage
I've recently started using PostSharp in some of my projects and have noticed an unfortunate side effect - the code coverage in all the projects its used with drops significantly.
I'm guessing the ...
14
votes
6answers
4k views
Anyone with Postsharp experience in production?
Does anyone out there has used Postsharp AOP framework in production environment? Are there any pitfalls? In order to do some logging etc, can Postsharp be used in conjunction with log4net ?
Any ...
14
votes
3answers
1k views
What is IL Weaving?
I just saw Ayende's post today about PostSharp. I downloaded the code and tried it out, and I thought it was the coolest, most easy to use way to handle AOP that I've seen.
In his post, Ayende says ...
13
votes
1answer
1k views
Generating a custom compile time warning C#
I'm using VS2008 and would like to create a compile time warning / error based on custom attributes on a property (if it is possible).
There are two cases which interest me currently:
[MyAttribute ...
11
votes
4answers
1k views
Opensource alternative to postSharp that supports easy custom attributes
Does anyone know a opensource alternative to postsharp thats as easy to use and supports attribute based stuff? I've seen AspectDNG which is slightly similar but creating those attributes is like c++ ...
10
votes
6answers
412 views
Unit Testing and PostSharp
I'm wondering what the best way to do this is... I'm interested in introducing PostSharp into one of my projects, but I'm not sure how to unit test classes marked with an attribute properly.
For ...
10
votes
3answers
2k views
Cool PostSharp aspects
I'm looking for interesting PostSharp aspects - anything that you found useful and wouldn't mind sharing.
9
votes
3answers
3k views
Mono Cecil vs. PostSharp Core vs. Microsoft CCI for implementing AOP framework
Which is the better in terms of capabilities, easy of use, documentation, samples, community/support, VS integration, known implementations, long-term viability, and build speed to implement a custom ...
8
votes
4answers
2k views
PostSharp - il weaving - thoughts
I am considering using Postsharp framework to ease the burden of application method logging.
It basically allows me to adorn methods with logging attribute and at compile time injects the logging code ...
7
votes
4answers
885 views
How do I find the return type of a method with System.Reflection.MethodBase in C#?
how do I find out the return type of a method from the MethodBase? I'm using PostSharp and trying to override the CompileTimeValidate(MethodBase method) method to make sure the attribute is applied to ...
6
votes
0answers
72 views
Simplest way to mock properties of PostSharp attribute
I'm using a PostSharp method attribute to do authorisation and auditing on my WCF service. It's working properly but now I'm trying to get my unit tests working with the attribute and am struggling to ...
6
votes
2answers
115 views
Multiple aspects on one method
In my application I previously used regular C# attributes to "annotate" a method. E.g.:
[Foo(SomeKey="A", SomeValue="3")]
[Foo(SomeKey="B", SomeValue="4")]
public void TheMethod()
{
...
6
votes
1answer
621 views
Filtering log4net on method name - can't quite get it
I'm using log4net to log my web app's progress, using Log4PostSharp to AOP-injectify all methods. This has the desired effect of logging (almost) everything and is fine.
I now have a requirement to ...
6
votes
3answers
296 views
PostSharp 2.0 BadImageFormatException
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. ...
5
votes
1answer
241 views
PostSharp OnMethodBoundaryAspect OnEntry Not Executing
I am running a .NET 4.0 Web Application (not web site) and PostSharp 1.5. I cannot get the OnEntry override method to execute using the OnMethodBoundaryAspect base class. Here is some relevant code:
...
5
votes
1answer
407 views
Remove PostSharp reference after build?
Is is possible to get postsharp to remove references to the postsharp assemblies during a build?
I have an exe i needs to have a very small footprint. I want to use some of the compile time weaving ...
5
votes
3answers
414 views
Suppressing PostSharp Multicast with Attribute
I've recently started experimenting with PostSharp and I found a particularly helpful aspect to automate implementation of INotifyPropertyChanged. You can see the example here. The basic ...
4
votes
1answer
65 views
How to modify method arguments using PostSharp?
I need to do some stuff with parameteres passed into my method. How can I play with them (modify) using PostSharp ?
4
votes
1answer
543 views
IoC with AOP (PostSharp) in MonoDroid
I'm working on a MonoDroid app, and there really isn't a good DI solution yet (at least that I know of).
I've gotten PostSharp to work on MonoDroid, and I'm using the Location Intercept aspect as a ...
4
votes
2answers
300 views
Assembly wide multicast attributes. Are they evil?
I am working on a project where we have several attributes in AssemblyInfo.cs, that are being multicast to methods of a particular class.
[assembly: Repeatable(
AspectPriority = 2,
...
4
votes
4answers
592 views
How to inject/generate plumbing code into methods decorated with an Attribute?
I was reading through some articles on Caching and Memoization and how to implement it easily using delegates and generics. The syntax was pretty straightforward, and it is surprisingly easy to ...
3
votes
1answer
70 views
postsharp exception is null
I have a probleme with Postsharp.
i have this:
[Serializable]
public class MethodConnectionTracking: OnExceptionAspect
{
public override void OnException(MethodExecutionArgs args)
{
...
3
votes
2answers
117 views
Is it possible to add methods to classes with PostSharp? If yes, is it possible to then reference those methods from other classes?
Let's say I have a class Abc:
class Abc {
}
and that I'd like to externally add some method m() to it. I guess it's probably possible to do this, although I am not sure how. Assuming it is possible ...
3
votes
1answer
225 views
PostSharp aspect resolving type
We are using dependency injection with and IoC (Unity) and now I want to make an aspect with PostSharp that would basically log enter/exit of a method. My problem is that my logger is configured and ...
3
votes
4answers
671 views
Free analogue of the PostSharp required
I have heard of PostSharp, but I am wondering if there are any other similar tools - anything analogous to PostSharp?
Are there any libraries that could be used as an alternative to PostSharp? Any ...
3
votes
1answer
316 views
PostSharp on assemblies I don't have source for
In the examples on their website, PostSharp has a demo of intercepting calls in main system assemblies. I have tried a few times to setup and replicate said intercept calls on assemblies I don't have ...
3
votes
1answer
474 views
PostSharp OnMethodBoundaryAspect
I'm working on an aspect with postsharp 1.5 and OnMethodBoundaryAspect.
I want my aspect have the following behavior by default:
1-If the attribute is used at class level the aspect is applied only ...
3
votes
2answers
450 views
Applying an attribute to an interface using PostSharp
I want to be able to apply an attribute to an interface so that every method in any class that implements that interface will have the attribute applied to it.
I assumed it would look something like ...
3
votes
2answers
560 views
What are the functional differences between AspectJ and PostSharp?
Does anyone know what AOP features are different between AspectJ and PostSharp (yes I know they are for different languages and platforms)?
I'm trying to understand what kind of things AspectJ would ...
3
votes
2answers
428 views
Whats the difference between PostSharp and Castle Dynamic Proxy?
Just wondering what the main differences are between these libraries, how they differ in features and functionality.
Hoping for more information than I could find with a Google query...
3
votes
1answer
405 views
Refactoring nasty legacy systems via AOP or other automated means?
I've recently been playing around with PostSharp, and it brought to mind a problem I faced a few years back: A client's developer had produced a web application, but they had not given a lot of ...
3
votes
1answer
396 views
PostSharp: Custom attributes are removed when using OnMethodInvocationAspect
I've got some aspect like this:
public class MyAttribute : OnMethodInvocationAspect
{
public int Offset { get; internal set; }
public MyAttribute(int offset)
{
this.Offset = ...
3
votes
4answers
442 views
Why use a post compiler?
I am battling to understand why a post compiler, like PostSharp, should ever be needed?
My understanding is that it just inserts code where attributed in the original code, so why doesn't the ...
3
votes
4answers
394 views
Aspect Oriented Programming: What do you use PostSharp for?
I would like to ask users of the AOP framework Postsharp, what specifically are you using the framework for?
Also, I know it's use has a big negative impact on build times, but how about runtime ...
3
votes
3answers
736 views
Which Tools Perform Post-Compile Modification of IL?
A recent mention of PostSharp reminded me of this:
Last year where I worked, we were thinking of using PostSharp to inject instrumentation into our code. This was in a Team Foundation Server Team ...
3
votes
2answers
1k views
Adding an OnException attribute using PostSharp
I am adventuring into some AOP and it seems with .NET PostSharp is the way to go.
I want to do some simple logging to the db when an exception occurs. However I am finding it difficult to find any ...
3
votes
4answers
1k views
Using PostSharp to intercept calls to Silverlight objects?
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 ...
2
votes
1answer
42 views
PostSharp - How to inject a method into a class?
I have some problem with PostSharp (I assume that problem can be solved by other library).
I have that scenario:
I must get all classes with name containing a word, e.g "Sth". I have that classes in ...
2
votes
1answer
58 views
Why is DbgView missing some trace writes, but the traces can be seen in test runners
Can anyone explain why DbgView misses some of my trace writes ?
I'm using the Enterprise Library 5.0 logging block with a trace listener deriving from the EntLib CustomTraceListener, as below ...
...
2
votes
1answer
185 views
How to inject an attribute using a PostSharp attribute?
How can I write a PostSharp aspect to apply an attribute to a class? The scenario I'm considering is a WCF entity (or domain object) that needs to be decorated with the DataContract attribute. It ...
2
votes
1answer
97 views
external argument injection to method calls in multiple target classes
I have a number of classes that call say Trace.WriteLine("LogSomethingClassSpecific"), in various methods all over the place. Now I would like some of those classes to make all their Trace calls like ...
2
votes
0answers
144 views
signing dll and postsharp
I’ve got a problem with postsharp on my hudson CI server. Whenever I try to sign a dll with specific version an error occurs. (Hudson is using MSBuild from cmd to build this project , building it as ...
2
votes
1answer
190 views
PostSharp: initialize instance-scoped aspect after target constructors
I have written an aspect implementing IInstanceScopedAspect and inheriting from LocationInterceptionAspect.
When initialized, it reads some properties from the target object. The problem is that ...
2
votes
1answer
152 views
PostSharp Pointcuts
Before I start, I'd like to clarify that my current understanding of AOP terminology is as follows...
Aspects are the AOP equivalent of Classes in OOP.
Advices are the AOP equivalent of Methods in ...
2
votes
1answer
42 views
Which are the most suitable languages to apply Aspect's Theme approach?
I am thinking about reading Aspect-Oriented Analysis and Design: The Theme Approach, yet I am hesitant. Is it possible to use what's taught in the book with AspectJ (for Java) or Post# in C#? Maybe ...
2
votes
4answers
308 views
How do you give a C# Auto-Property a default value using a custom attribute?
How do you give a C# Auto-Property a default value, using a custom attribute?
This is the code I want to see:
class Person
{
[MyDefault("William")]
public string Name { get; set; }
}
I am ...
2
votes
2answers
71 views
Is there a repository/library of ready-to-use postsharp aspects?
I'm about to start using PostSharp in my project. I'd like to leverage existing aspects. Is there a repository or a list of ready-to-use, user contributed, postsharp aspects? Something like the ...
2
votes
1answer
128 views
How to fire our aspects conditionally in PostSharp 2.0
We are in the progress of introducing PostSharp in one of our projects. It's been working great so far! There is one thing though that we haven't managed to solve: how to fire an advice conditionally.
...
2
votes
2answers
185 views
Generating immutable value object in C#: PostSharp or T4 templates?
I'm getting sick of boilerplate immutable value object code. Would either PostSharp or T4 templates allow me to do the following transformation?
Input:
public struct Name
{
public string ...
2
votes
2answers
140 views
PostSharp vs DynamicProxy2 Interface Interception
I've used PostSharp in the past to do AOP and I've been checking out AOP using Autofac and DynamicProxy2 and I'm curious if there are any benefits of one of the other.
i.e. Is one more reliable, ...