OAuthChallengeProperties クラス

定義

AuthenticationProperties OAuth チャレンジの場合は 。

public ref class OAuthChallengeProperties : Microsoft::AspNetCore::Authentication::AuthenticationProperties
public class OAuthChallengeProperties : Microsoft.AspNetCore.Authentication.AuthenticationProperties
type OAuthChallengeProperties = class
    inherit AuthenticationProperties
Public Class OAuthChallengeProperties
Inherits AuthenticationProperties
継承
OAuthChallengeProperties
派生

コンストラクター

OAuthChallengeProperties()

OAuthChallengeProperties の新しいインスタンスを初期化します。

OAuthChallengeProperties(IDictionary<String,String>)

OAuthChallengeProperties の新しいインスタンスを初期化します。

OAuthChallengeProperties(IDictionary<String,String>, IDictionary<String,Object>)

OAuthChallengeProperties の新しいインスタンスを初期化します。

フィールド

ScopeKey

チャレンジ要求に使用される "scope" 引数のパラメーター キー。

プロパティ

AllowRefresh

認証セッションの更新を許可するかどうかの値を取得または設定します。

(継承元 AuthenticationProperties)
ExpiresUtc

認証チケットの有効期限が切れる日時を取得または設定します。

(継承元 AuthenticationProperties)
IsPersistent

認証セッションを複数の要求にわたって保持するかどうかの値を取得または設定します。

(継承元 AuthenticationProperties)
IssuedUtc

認証チケットが発行された日時を取得または設定します。

(継承元 AuthenticationProperties)
Items

認証セッションに関する状態値。

(継承元 AuthenticationProperties)
Parameters

認証ハンドラーに渡されるパラメーターのコレクション。 これらはシリアル化または永続化を目的としたものではなく、呼び出しサイト間でデータを流す場合にのみ使用されます。

(継承元 AuthenticationProperties)
RedirectUri

http のリダイレクト応答値として使用される完全パスまたは絶対 URI を取得または設定します。

(継承元 AuthenticationProperties)
Scope

チャレンジ要求に使用される "スコープ" パラメーター値。

メソッド

Clone()

コピーを返します。

(継承元 AuthenticationProperties)
GetBool(String)

コレクションから null 許容 Boolean を取得します Items

(継承元 AuthenticationProperties)
GetDateTimeOffset(String)

コレクションから null 許容 DateTimeOffset 値を取得します Items

(継承元 AuthenticationProperties)
GetParameter<T>(String)

コレクションからパラメーターを Parameters 取得します。

(継承元 AuthenticationProperties)
GetString(String)

コレクションから文字列値を取得します Items

(継承元 AuthenticationProperties)
SetBool(String, Nullable<Boolean>)

コレクション内の値を Boolean 設定または削除します Items

(継承元 AuthenticationProperties)
SetDateTimeOffset(String, Nullable<DateTimeOffset>)

コレクション内Itemsの値をDateTimeOffset設定または削除します。

(継承元 AuthenticationProperties)
SetParameter<T>(String, T)

コレクションにパラメーター値を Parameters 設定します。

(継承元 AuthenticationProperties)
SetScope(String[])

"scope" パラメーター値を設定します。

SetString(String, String)

コレクションの文字列値を設定または削除します Items

(継承元 AuthenticationProperties)

拡張メソッド

GetTokens(AuthenticationProperties)

プロパティに含まれるすべての AuthenticationToken インスタンスを返します。

GetTokenValue(AuthenticationProperties, String)

トークンの値を返します。

StoreTokens(AuthenticationProperties, IEnumerable<AuthenticationToken>)

古いトークンを削除した後、一連の認証トークンを格納します。

UpdateTokenValue(AuthenticationProperties, String, String)

既に存在する場合は、トークンの値を更新します。

適用対象