0
votes
1answer
6 views
AOP/PostSharp and dirty-checking - getting property name the better way?
My aspect:
[Serializable]
[MulticastAttributeUsage(MulticastTargets.Class, Inheritance = MulticastInheritance.Strict)]
public sealed class NotifyPropertyChangedAttribute : …
2
votes
1answer
97 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 …
1
vote
2answers
30 views
PostSharp: OnMethodBoundaryAspect on derived class’s constructor
Hi
I have an aspect that writes something to the console on exception.
I have a base class that throws an exception on its constructor, and a derived class that have the aspect on its constructor.
I …
0
votes
1answer
100 views
Error using PostSharp: “PostSharp.AssertionFailedException: Invalid image”
I'm looking into PostSharp as a means to bring logging into my team's projects. I'm running into an error when I try to create a sample aspect. I have some room to debug it, but I'd like to get some …
0
votes
2answers
88 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...
0
votes
2answers
41 views
How to convert an exception to another one using PostSharp?
I would like to automagically add the following code around the body of some methods:
try
{
// method body
}
catch (Exception e)
{
throw new MyException("Some appropriate message", e);
}
I am …
0
votes
4answers
241 views
How to get this really fast?
I have a framework that allows users to do queries to a specific datasource (the Football Manager 2010 ingame database, for those of you interested).
In this framework, I have two different modes …
1
vote
2answers
73 views
Reduce PostSharp compile time overhead
We recently introduced PostSharp into our code base and the compile time of our ASP.NET MVC project has doubled to quadrupled. We have about 3 MVC projects and approximately 8 class library projects …
1
vote
1answer
25 views
Deploy multiple projects using PostSharp on a target machine without the PostSharp MSI
We have several projects hanging off of a solution, a website and some services. Each will utilise PostSharp but as we do not want to install PostSharp on the target machine using the MSI we can …
2
votes
2answers
87 views
Preprocessing C# - Detecting Methods
Hey,
I require the ability to preprocess a number of C# files as a prebuild step for a project, detect the start of methods, and insert generated code at the start of the method, before any existing …
0
votes
1answer
46 views
Null reference exception on MethodExecutionEventArgs.Method using PostSharp with multiple web service projects
HI,
I'm using PostSharp to log entry and exit to every method in my Application assembly. This assembly is strongly named, versioned and registered in the GAC.
It is then shared by 2 web service …
0
votes
2answers
67 views
Use AOP in C# to detect if return value is used
This is related to my other question, but this time very specific. Is it possible, using AOP (PostSharp in particular) to detect if function's return value was used? For example
var x = y.func(); // …
0
votes
0answers
53 views
Using Reflection and PostSharp alternatively !
Is there a Code sample that uses PostSharp actively but can also use System.Reflecttion.Emit alternatively to get field value and load into LocalVariableSymbol of PostSharp ?
eg.
in PS …
1
vote
2answers
89 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 …
1
vote
2answers
59 views
Hiding inherited named parameters on attributes C# (3.5)
Hi all,
I am using PostSharp to add some compile time logic to my attributes - in once case [IndexedCategory ("CatName", CatIndex)]. The trouble comes comes in because IndexedCategory derives from …
