I've got Claims and ClaimSet for my claims-based authentication. I want to move my library from .NET Framework to .NET Standard 2.0 but I can't find an equivalent class. There must be support for Claims-based authentication in .NET Standard 2.0, so I must be missing something obvious, right? What is it?
Asked
Active
Viewed 2,137 times
3
-
it is not supported in .net standard: https://apisof.net/catalog/System.IdentityModel.Claims.ClaimSet – magicandre1981 May 30 '18 at 14:12
2 Answers
0
You can use System.Security.Claims for Claims, ClaimSet hasn't been included unfortunately, but that shouldn't be to hard to overcome.
Relevant to create your own ClaimSet: this article on docs.ms
Also worth mentioning is this github-repo (IdentityModel)

NotImplementedException
- 438
- 3
- 12