ClaimsIdentity class
クレーム ベースの ID を表します。
コンストラクター
Claims |
ClaimsIdentity クラスの新しいインスタンスを初期化します。 |
プロパティ
claims | |
is |
認証の状態を返します。 |
メソッド
get |
要求値 (存在する場合) を返します。 |
コンストラクターの詳細
ClaimsIdentity(Claim[], string | boolean)
ClaimsIdentity クラスの新しいインスタンスを初期化します。
new ClaimsIdentity(claims: Claim[], authenticationType?: string | boolean)
パラメーター
- claims
-
Claim[]
要求
- authenticationType
-
string | boolean
このクレーム セットの認証の種類、または isAuthenticated をオーバーライドするブール値
プロパティの詳細
claims
isAuthenticated
認証の状態を返します。
boolean isAuthenticated
プロパティ値
boolean
True の場合は認証されます。
メソッドの詳細
getClaimValue(string)
要求値 (存在する場合) を返します。
function getClaimValue(claimType: string): string | null
パラメーター
- claimType
-
string
検索する要求の種類
戻り値
string | null
要求値または null (見つからない場合)