While implementing an overload for SPClaimProvider.FillClaimsForEntity I need to lookup information based on a user's role.
But the method only seems to provide the user's identity (in the [SPClaim] entity) parameter, not any existing claims that the user already got from the ADFS20 server.
The documentation is quite sparse, so I was hoping the [List<SPClaim>] claims parameter contained the existing claims, but it's just an empty list.
Any of you smart peope know how to request the authenticating user's existing claims from SPClaimProvider.FillClaimsForEntity?
Thank you.