JwtAuthentication Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
JwtAuthentication() |
Inicializa una nueva instancia de la clase JwtAuthentication. |
JwtAuthentication(IList<String>, IList<String>, IList<TokenClaim>, IList<TokenKey>) |
Inicializa una nueva instancia de la clase JwtAuthentication. |
JwtAuthentication()
Inicializa una nueva instancia de la clase JwtAuthentication.
public JwtAuthentication ();
Public Sub New ()
Se aplica a
JwtAuthentication(IList<String>, IList<String>, IList<TokenClaim>, IList<TokenKey>)
Inicializa una nueva instancia de la clase JwtAuthentication.
public JwtAuthentication (System.Collections.Generic.IList<string> issuers = default, System.Collections.Generic.IList<string> audiences = default, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.TokenClaim> claims = default, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.TokenKey> keys = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.JwtAuthentication : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.TokenClaim> * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.TokenKey> -> Microsoft.Azure.Management.VideoAnalyzer.Models.JwtAuthentication
Public Sub New (Optional issuers As IList(Of String) = Nothing, Optional audiences As IList(Of String) = Nothing, Optional claims As IList(Of TokenClaim) = Nothing, Optional keys As IList(Of TokenKey) = Nothing)
Parámetros
Lista de emisores de tokens esperados. El emisor de tokens es válido si coincide con al menos uno de los valores especificados.
Lista de audiencias de tokens esperadas. La audiencia del token es válida si coincide con al menos uno de los valores especificados.
- claims
- IList<TokenClaim>
Lista de notificaciones de token adicionales que se van a validar. El token debe contener todas las notificaciones y los valores respectivos para que sean válidos.
Lista de claves que se pueden usar para validar los tokens de acceso. Tener varias claves permite la rotación de claves sin problemas de la clave de firma de tokens. La firma del token debe coincidir exactamente con una clave.
Se aplica a
Azure SDK for .NET