SecurityTokenResolver.TryResolveSecurityKey(SecurityKeyIdentifierClause, SecurityKey) Método

Definição

Tenta recuperar a chave referenciada na cláusula do identificador de chave especificada.Attempts to retrieve the key that is referenced in the specified key identifier clause.

public:
 bool TryResolveSecurityKey(System::IdentityModel::Tokens::SecurityKeyIdentifierClause ^ keyIdentifierClause, [Runtime::InteropServices::Out] System::IdentityModel::Tokens::SecurityKey ^ % key);
public bool TryResolveSecurityKey (System.IdentityModel.Tokens.SecurityKeyIdentifierClause keyIdentifierClause, out System.IdentityModel.Tokens.SecurityKey key);
member this.TryResolveSecurityKey : System.IdentityModel.Tokens.SecurityKeyIdentifierClause * SecurityKey -> bool
Public Function TryResolveSecurityKey (keyIdentifierClause As SecurityKeyIdentifierClause, ByRef key As SecurityKey) As Boolean

Parâmetros

keyIdentifierClause
SecurityKeyIdentifierClause

Um SecurityKeyIdentifierClause para o qual recuperar a chave.A SecurityKeyIdentifierClause to retrieve the key for.

key
SecurityKey

Quando é retornado, este método contém um SecurityKey que contém a chave referenciada na cláusula do identificador de chave especificado.When this method returns, contains a SecurityKey that contains the key that is referenced in the specified key identifier clause. Este parâmetro é passado não inicializado.This parameter is passed uninitialized.

Retornos

Boolean

true quando uma chave puder ser recuperada para a cláusula do identificador de chave especificada; caso contrário, false.true when a key can be retrieved for the specified key identifier clause; otherwise, false.

Exceções

keyIdentifierClause é null.keyIdentifierClause is null.

Comentários

Os TryResolveSecurityKey ResolveSecurityKey métodos e diferem no que acontece quando a cláusula do identificador de chave não pode ser resolvida para uma chave.The TryResolveSecurityKey and ResolveSecurityKey methods differ in what happens when the key identifier clause cannot be resolved to a key. O TryResolveSecurityKey método retorna false , enquanto o ResolveSecurityKey método gera uma exceção.The TryResolveSecurityKey method returns false, whereas the ResolveSecurityKey method throws an exception.

Aplica-se a