Tagged Questions

0
votes
4answers
218 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 …
0
votes
2answers
22 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 me …
1
vote
2answers
44 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 cla …
2
votes
2answers
76 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, …
0
votes
1answer
27 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 …
0
votes
2answers
48 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 v …
1
vote
1answer
15 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 …
0
votes
0answers
37 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. …
1
vote
2answers
50 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 IndexedCate …
0
votes
1answer
60 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 co …
1
vote
1answer
75 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 g …
1
vote
2answers
64 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 t …
1
vote
4answers
137 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 surpris …
2
votes
3answers
108 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 …
0
votes
1answer
38 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) { …

1 2 3 4 next
15 30 50 per page