I'm having a hard time understanding how a Claim should be defined. There is a lot of information on the web about creating claims but none of it seems to agree. I have found four attributes of a claim in different posts:
- ClaimType
- ClaimValue
- ValueType
- Right
Given a scenario where you want to create a claim the denotes a user has the right to edit a User object, what is the correct way to set these attributes?
Also, in WIF there doesn't seem to be a property for the "Right" attribute. Is "Right" only used in the context of WCF?
Im confused, help!
EDIT:
Thanks for your responses. To make this a little more concrete, I am currently seeing two options for my custom claim:
1-ClaimType=Edit,ClaimValue=User
2-ClaimType=Action,ClaimValue=EditUser
Option one seems to be more "claims-based" and option to seems more "role-based". Thoughts?