次の方法で共有


JwtAuthentication コンストラクター

定義

オーバーロード

JwtAuthentication()

JwtAuthentication クラスの新しいインスタンスを初期化します。

JwtAuthentication(IList<String>, IList<String>, IList<TokenClaim>, IList<TokenKey>)

JwtAuthentication クラスの新しいインスタンスを初期化します。

JwtAuthentication()

JwtAuthentication クラスの新しいインスタンスを初期化します。

public JwtAuthentication ();
Public Sub New ()

適用対象

JwtAuthentication(IList<String>, IList<String>, IList<TokenClaim>, IList<TokenKey>)

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)

パラメーター

issuers
IList<String>

予想されるトークン発行者の一覧。 トークン発行者は、指定された値の少なくとも 1 つと一致する場合に有効です。

audiences
IList<String>

予想されるトークン対象ユーザーの一覧。 トークンの対象ユーザーは、指定された値の少なくとも 1 つに一致する場合に有効です。

claims
IList<TokenClaim>

検証する追加のトークン要求の一覧。 トークンを有効にするには、すべての要求とそれぞれの値が含まれている必要があります。

keys
IList<TokenKey>

アクセス トークンの検証に使用できるキーの一覧。 複数のキーを使用すると、トークン署名キーのシームレスなキーローテーションが可能になります。 トークン署名は、1 つのキーと完全に一致する必要があります。

適用対象