Open
Description
Describe the issue or suggestion
When we looked at the source code
- NET Framework SecurityTokenResolver
- .NET Core SecurityTokenResolver
They are mostly same, especially method CreateDefaultSecurityTokenResolver(ReadOnlyCollection<SecurityToken>, Boolean)
exists in both. But the .NET Core page doesn't show these API:
- .NET Framework page for SecurityTokenResolver: https://learn.microsoft.com/en-us/dotnet/api/system.identitymodel.selectors.securitytokenresolver?view=netframework-4.8.1
There are Methods APIs table there - .NET Core page for SecurityTokenResolver (Take .NET 8 for example): https://learn.microsoft.com/en-us/dotnet/api/system.identitymodel.selectors.securitytokenresolver?view=net-8.0-pp
There is nothing about Methods APIs
This led us to mistakenly conclude that the CreateDefaultSecurityTokenResolver method is incompatible with .NET Core, but actually it is compatible.