SamlSecurityTokenAuthenticator.ResolveClaimSet Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Resolves the identity associated with the specified security token or key identifier and returns it as a ClaimSet.
Overloads
ResolveClaimSet(SecurityKeyIdentifier) |
Resolves the identity associated with the specified key identifier using the supporting security authenticators provided when the SamlSecurityTokenAuthenticator instance was created and returns it as a ClaimSet. |
ResolveClaimSet(SecurityToken) |
Resolves the identity associated with the specified security token using the supporting token authenticators provided when the SamlSecurityTokenAuthenticator instance was created and returns it as a ClaimSet. |
ResolveClaimSet(SecurityKeyIdentifier)
Resolves the identity associated with the specified key identifier using the supporting security authenticators provided when the SamlSecurityTokenAuthenticator instance was created and returns it as a ClaimSet.
public:
virtual System::IdentityModel::Claims::ClaimSet ^ ResolveClaimSet(System::IdentityModel::Tokens::SecurityKeyIdentifier ^ keyIdentifier);
public virtual System.IdentityModel.Claims.ClaimSet ResolveClaimSet (System.IdentityModel.Tokens.SecurityKeyIdentifier keyIdentifier);
abstract member ResolveClaimSet : System.IdentityModel.Tokens.SecurityKeyIdentifier -> System.IdentityModel.Claims.ClaimSet
override this.ResolveClaimSet : System.IdentityModel.Tokens.SecurityKeyIdentifier -> System.IdentityModel.Claims.ClaimSet
Public Overridable Function ResolveClaimSet (keyIdentifier As SecurityKeyIdentifier) As ClaimSet
Parameters
- keyIdentifier
- SecurityKeyIdentifier
A SecurityKeyIdentifier to get the identity of.
Returns
A ClaimSet that represents the identity of the specified key identifier.
Applies to
ResolveClaimSet(SecurityToken)
Resolves the identity associated with the specified security token using the supporting token authenticators provided when the SamlSecurityTokenAuthenticator instance was created and returns it as a ClaimSet.
public:
virtual System::IdentityModel::Claims::ClaimSet ^ ResolveClaimSet(System::IdentityModel::Tokens::SecurityToken ^ token);
public virtual System.IdentityModel.Claims.ClaimSet ResolveClaimSet (System.IdentityModel.Tokens.SecurityToken token);
abstract member ResolveClaimSet : System.IdentityModel.Tokens.SecurityToken -> System.IdentityModel.Claims.ClaimSet
override this.ResolveClaimSet : System.IdentityModel.Tokens.SecurityToken -> System.IdentityModel.Claims.ClaimSet
Public Overridable Function ResolveClaimSet (token As SecurityToken) As ClaimSet
Parameters
- token
- SecurityToken
The SecurityToken to get the identity of.
Returns
A ClaimSet that represents the identity of the specified security token.