I am trying to implement claims based security using System.IdentityModel. We are using Windows XP for all development work and therefore cannot use Windows Identity Foundation. What I am trying to do is decorate methods in service contract with permission attributes, I am not sure how to do that

For example in my service I want to have method

void DeleteRecord(int recordId);

I want to decorate it with an attribute like this

[HasDeletePermission] void DeleteRecord(int recordId);

So based on the claimset user has, method will either execute or exception will be thrown. How do I achieve this.

link|improve this question

feedback

2 Answers

You could use something like PostSharp to embed aspects into the methods you need.

link|improve this answer
feedback
up vote 0 down vote accepted

Used PostSharp free edition to implement attribute. Works well

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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