0
votes
1answer
12 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
4answers
234 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 …
0
votes
2answers
39 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 …
1
vote
2answers
69 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 …
2
votes
2answers
84 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
2answers
62 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
2answers
84 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
1answer
43 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
0answers
50 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
1answer
22 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 …
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 …
0
votes
1answer
69 views
.NET Conditional Compiler Symbols and Unit Test Libraries
My team has a set of unit test libraries that run against our application code - unfortunately they are throwing (unexpected) exceptions. The reason for this is that our logging code is being called …
1
vote
1answer
83 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
4answers
149 views
Code Generation based on method Attributes
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 …
1
vote
2answers
82 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 …
