Reputation: 7018
I am trying to implement security model in a WPF desktop application in ver 4.5. I studied many articles and most of them are either Web based or with WCF.
Does that mean that claim based security is not actually made for desktop application?
Please help me to understand.
Upvotes: 1
Views: 1376
Reputation: 18502
Claims based identity is a way to model identity - it is totally independent from the client/server environment.
You can always create a ClaimsPrincipal and populate some claims - and later query them.
Upvotes: 2