Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Assumed I have an aspect implementing IInstanceScopedAspect and I have this aspect applied to methods in a type. How can I initialize the aspects when creating the object with FormatterServices.GetUninitializedObject? The constructor is not executed and therefore I get a NullReferenceException when I execute the method where the aspect is applied.

Is there a PostSharp API which can be used to initialize the object's aspects ?

share|improve this question
I want my bounty back :D – Matthias Nov 20 '12 at 19:11
Since PostSharp IL weaves. I would build the code, then look at it with a decompiler (ILSpy). This can give you an insight into what you are actually dealing with. – Davin Tryon Nov 23 '12 at 14:55
I actually know what I'm dealing with. The InitializeAspects method is not executed. – Matthias Nov 24 '12 at 0:50

1 Answer

up vote 1 down vote accepted

There is a InitializeCurrentAspects method available for exactly this scenario, as documented here; http://doc.sharpcrafters.com/postsharp-2.0/Default.aspx##PostSharp-2.0.chm/html/M_PostSharp_Aspects_AspectUtilities_InitializeCurrentAspects.htm

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.