PostSharp is aspect oriented programming for .NET using attributes that encapsulate aspects.
-4
votes
0answers
10 views
Postsharp: What is difference between MethodInterceptionAspect & MethodImplementationAspect
purpose of the OnInvoke method in both class MethodInterceptionAspect & MethodImplementationAspect
0
votes
0answers
17 views
Free AOP framework compatible with WinRT?
I'm currently making a Windows Store version of a WPF app that uses dynamic proxies in a few places.
Since there is apparently no way to generate dynamic proxies in WinRT, I thought I'd try to use ...
0
votes
0answers
26 views
Postsharp compile-time validation on interface methods
I have an assembly that contains service contracts(assembly name is Contracts). I want to implement authorization on those methods using attributes and PostSharp.
The authorization attribute looks ...
0
votes
1answer
27 views
How to fix PostSharp warning LA0036?
When building my project I get lots of PostSharp warnings like
POSTSHARP: postsharp warning LA0036: Missing optimization information on method '...'.
What does it mean and how can I get rid of ...
0
votes
0answers
6 views
Get the project path/output path during Postsharp compile time
Is it possible to find out the project folder/project file or output path of the assembly during compile time in Postsharp, i.e. during CompileTimeInitialize for example, when the assembly is being ...
0
votes
0answers
5 views
Postsharp MulticastPointcut not working on constructor
I have placed this in my TypeLevelAspect to capture entry into the constructor:
[OnMethodEntryAdvice, MulticastPointcut(Attributes=MulticastAttributes.Instance | MulticastAttributes.Private | ...
2
votes
2answers
33 views
Compiler warning “Missing optimization information” OnEntry and OnExit with NullGuard.PostSharp
Just installed Postsharp 2.1 from the nuget package and then installed Phil Haack's NullGuard package.
As I add the [EnsureNonNullAspect] aspect at either the class or method level I immediately get ...
0
votes
0answers
29 views
Logging method parameters with PostSharp
How could I log all method parameters on exception with PostSharp v2.1 (without smart tags that added in v3).
Thanks in advance.
0
votes
1answer
53 views
I am getting “Cannot serialized the aspects: Type 'log4net.Core.LogImpl' in assembly 'log4net…'” -how can I make it serializable?
Environment
Windows 7 x64
PostSharp 2.1.7.30 installed
PostSharp 2.1.7.29 (reference retrieved from the PostSharp install directory)
log4net 1.2.11.0 (reference retrieved from the net\2.0\release ...
0
votes
1answer
43 views
PostSharp singleton
I wish I have a PostSharp-powered singleton pattern?
Is it possible for PostSharp?
Is there an existing example or project?
Want to so something like:
interface ISingleton
{
void Refresh();
...
0
votes
0answers
32 views
PostSharp in web project using NuGet
After I followed the steps listed here : http://doc.postsharp.net//postsharp-2.1/Default.aspx##PostSharp-2.1.chm/html/41129237-a5d4-4acf-aef4-c46759ccfb4b.htm
it gives me this error : "
PostSharp is ...
0
votes
1answer
17 views
How can I prevent a peice of code running during deserialization?
I have the following code leveraging PostSharp to automatically set a property (a foreign key) when its navigation property (tagged with the ForeignKeyAttribute) is set.
The code is extremely slow ...
0
votes
0answers
24 views
changing com+ transaction with system transaction
my application is working with com+(enterprise services).
we don't have distribuuted transactions it is a really big system and does not work with dependancy injection (DI)
i would like to switch it ...
0
votes
0answers
22 views
Extern controlled event registration / unregistration with Postsharp?
I have a situation where the object lifetime is controlled by an extern party.
public class Source
{
public event EventHandler<CustomEventArgs> SomeEvent;
public event ...
0
votes
1answer
46 views
Creating global aspects in postsharp
I am looking for a way in which to all aspects to run on methods in many places in my project, without having to manually add in the attribute tag to each method or class.
My entire solution holds ...
0
votes
1answer
34 views
Undo Redo using PostSharp for Nested property or collections
I am in midway implementing an UndoRedo container for a view model that contains nested properties and ObservableCollection. I am using PostSharp for Exception Handling in the application and thought ...
0
votes
1answer
25 views
How to exclude constructors from being hit by Namespace wide aspects
I have just started using Postsharp as a way to do logging etc. on a project and have come across an issue I have yet to resolve.
In my project I have created my LogAttribute which correctly is ...
1
vote
2answers
93 views
Is it possible to intercept add/remove methods on a generic list using postsharp?
I am new to AOP and post sharp (2.1.0.0). I have been experimenting with property/method interception and am able to write inteceptor aspects for classes which I have written.
My goal is to not have ...
0
votes
1answer
64 views
Is it possible to use PostSharp 3 with Visual Studio Express?
PostSharp 3 is available only as a visual studio extension. Visual Studio Express don't support extension. Is there a way to use PostSharp 3 with Express version of Visual Studio?
Previously we use ...
1
vote
1answer
70 views
How to exclude from OnMethodBoundaryAspect-based logging?
I have this logger:
[Serializable]
[AttributeUsage(AttributeTargets.All)]
public class MethodsInterceptAspect : OnMethodBoundaryAspect {
public override void OnEntry(MethodExecutionArgs args) { ...
28
votes
4answers
568 views
C# - Object Composition - Removing Boilerplate Code
Context / Question
I've worked on numerous .NET projects that have been required to persist data and have usually ended up using a Repository pattern. Does anyone know of a good strategy for ...
0
votes
1answer
53 views
Override attribute applied on class
I have been testing out Postsharp, specifically the OnMethodBoundaryAspect class, creating subclass (attribute) and implementing some of my own custom logging into a CSV file.
All is working ...
1
vote
2answers
257 views
AOP vs MVC FilterAttributes vs Interceptors [closed]
ASP.NET MVC proposes that use or extend built-in Authorization, Action, Result, Exception filters.
3th party .Net IoC containers (Unity, Ninject, Autofac) propose Interceptors
3th party AOP tools ...
0
votes
1answer
55 views
Throw an custom exception and catch them with Postsharp
I have 2 attributes:
SecuredOperationAttribute
ExceptionPolicyAttribute
If user doesn't has an access to the action on controller then I throw an custom NonAuthorizedException but I can't catch ...
0
votes
1answer
48 views
Why is PostSharp skipping one of my projects on the build server?
I upgraded PostSharp recently via NuGet and it has stopped working, but only in very select cases. It doesn't work on my build server (TeamCity), and it doesn't work on only one of my projects. The ...
2
votes
3answers
48 views
How do you make Postsharp testable
Dependency injection doesn't work in Postsharp. How do I make aspects testable? I really want to avoid creating concrete classes for logging in my aspects.
I don't want the aspects running when I'm ...
1
vote
0answers
62 views
AOP - Injecting a property with a dynamically computed value
(or "Using LocationInterceptionAspect and IInstanceScopedAspect together")
Using Postsharp I'm trying to inject a property into a target class using 'IntroduceMember' and then using the 'OnGetValue' ...
1
vote
1answer
130 views
Get the generic arguments of a PostSharp OnMethodBoundaryAspect applied to Generic Method
Given an PostSharp OnMethodBoundaryAspect of the following set-up, how do I get typeof(T1) during OnEntry or OnExit:
Bonus Points for no reflection used.
Aspect:
public class ...
0
votes
1answer
98 views
How do you disable PostSharp when running unit tests?
I want my nunit tests not to apply any of my PostSharp aspects so I can test my methods in isolation. Can this be done somehow in the Test Fixture Setup, or can it only be done on a per project level?
...
0
votes
1answer
241 views
Compiling a .NET project using NuGet, PostSharp and Jenkins
I've got some serious problems when trying to compile a C# project in Jenkins which needs NuGet for package management and PostSharp for aspects.
I added EnableNuGetPackageRestore=true as an ...
1
vote
1answer
100 views
Using PostSharp with F# - Need documentation with working example
I have a need to capture the input and output of F# functions and decided to try using PostSharp. I was unable to find documentation and a working F# example for using PostSharp with F#. Does anyone ...
1
vote
1answer
132 views
PostSharp 1.5, .net 3.5 and Visual Studio 2012
I posted this as an answer in a similar question but got no response so trying my luck here.
We have a .net 2.0 assembly with which PostSharp 1.5 is running fine. We have been given the go-ahead to ...
0
votes
1answer
67 views
Generating and serialising metadata at compile time using PostSharp
I'm trying to do something which I feel should be straight forward and simple to do, yet for the life of me, I can't get it to work. Using PostSharp, I want to create an aspect that I apply to a ...
0
votes
1answer
180 views
PostSharp and EntityFramework 5 do not work together
I am trying to upgrade my MVC 3 project to MVC 4 and while I install EF5, the PostSharp do not let compile the project. I get error below. Spend several hours trying to resolve the problem without any ...
0
votes
0answers
45 views
How do I get the last instance of an Aspect using PostSharp?
I am creating a performance counter using PostSharp. I want to create a static private collection in an Aspect that will accumulate for each attribute parameter passed and then when all aspect ...
0
votes
2answers
371 views
Common.Logging with PostSharp and NLog 2.0
I use Common.Logging as a wrapper around NLog 2.0. I've done this so that I can replace NLog with another logging provider in the future.
I also use PostSharp to not write a try catch block ...
0
votes
1answer
71 views
PostSharp aspect to introduce an Interface AND LocationInterception pointcuts
I have a need to implement a complex aspect which needs to be able to introduce an interface, as well as several pointcuts. I'm not sure how to do this.
My goal is to intercept some field setters on ...
1
vote
0answers
75 views
PostSharp aspects and mvc4
I add postsharp aspects to my mvc.net app. and start to have this error:
The custom attribute 'XXXXX.LogAspect' constructor threw the exception InvalidOperationException: Cannot load dynamically ...
1
vote
1answer
103 views
PostSharp, how to inject a value besides using the method interface?
Is there anyway to inject a value into a method besides modifying/overriding one of the arguments in the interface? for example:
[Serializable]
public class MyTestAttribute : ...
1
vote
1answer
103 views
VB.NET with PostSharp and inherited classes
I'm using PostSharp to capture all exceptions generated in my system with a class OnMethodBoundaryAspect. It works fine, but if I need to get exceptions in some classes inherited, I can't find ...
3
votes
2answers
119 views
Passing Func<> or similar to PostSharp aspect
In our external boundaries that expose WCF services, we convert all internal exceptions to FaultException. This is a manual process which often has minor flaws unique to each implementation. It has ...
0
votes
0answers
48 views
LocationInterceptionAspect: args.Location is returning null
I'm trying to get info in my aspect about the property it's intercepting, but args.Location is null and I have no idea why.
It's multicast from the class to the properties, but I don't think that ...
1
vote
1answer
67 views
Async CTP + Postsharp
Is there any restriction on the combination of the two frameworks? (in vs2012)
Searched and did not find any valid information. I can use async await, usually with PostSharp? I refer specifically to ...
0
votes
0answers
70 views
PostSharp Sample NotifyPropertyChanged aspect is causing WCF serialization depth failures
I am using the stock standard NotifyPropertyChanged aspect in some DTO classes, and finding that when the aspect is applied to these DTOs, I am seeing;
...
0
votes
0answers
60 views
get custom postsharp attributes via reflection
I'm using postsharp attributes on the methods of class something like this:
public class Foo
{
[HandleError]
public void Do()
{
}
}
and I'm trying to get the attributes like this:
...
1
vote
0answers
85 views
Running code before a BCL call with AOP in .NET
I'm trying to call a function after/before every function call to BCL in an ASP.NET application.
For example when Server.MapPath is called I want to call my own function right after and before that ...
0
votes
3answers
235 views
Binding WPF controls to dynamically introduced interfaces on model objects
I am using PostSharp's [CompositionAspect] capability to dynamically inject an interface to a model object in my WPF application. However, it seems WPF cannot bind (display) properties corre ctly ...
0
votes
1answer
95 views
Apply an aspect to only methods that have a specific attribute
I'm trying to set up a PostSharp aspect RunOutOfProcessAttribute so that it applies to:
all public methods
any method marked with the DoSpecialFunctionAttribute, regardless of member accessibility ...
4
votes
2answers
128 views
How to guarantee postsharp code has been injected?
This is a hypothetical question regarding the use of PostSharp.
I presume that if the PostSharp portion of the build were to be missed for any reason the attributes would be ignored and the built ...
0
votes
0answers
152 views
Inject Aspect to a method using PostSharp IAspectProvider
I am using PostSharp to try to inject an IAspect at run time as the example bellow show it but it is not working. I am either not doing it properly or I am missing something about how IAspectProvider ...

