CustomJsonClaimAction コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
CustomJsonClaimAction(String, String, Func<JObject,String>) |
新しい CustomJsonClaimAction を作成します。 |
CustomJsonClaimAction(String, String, Func<JsonElement,String>) |
新しい CustomJsonClaimAction を作成します。 |
CustomJsonClaimAction(String, String, Func<JObject,String>)
新しい CustomJsonClaimAction を作成します。
public:
CustomJsonClaimAction(System::String ^ claimType, System::String ^ valueType, Func<Newtonsoft::Json::Linq::JObject ^, System::String ^> ^ resolver);
public CustomJsonClaimAction (string claimType, string valueType, Func<Newtonsoft.Json.Linq.JObject,string> resolver);
new Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction : string * string * Func<Newtonsoft.Json.Linq.JObject, string> -> Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction
Public Sub New (claimType As String, valueType As String, resolver As Func(Of JObject, String))
パラメーター
- claimType
- String
要求の作成時に Claim.Type に使用する値。
- valueType
- String
Claim の作成時に Claim.ValueType に使用する値。
適用対象
CustomJsonClaimAction(String, String, Func<JsonElement,String>)
新しい CustomJsonClaimAction を作成します。
public:
CustomJsonClaimAction(System::String ^ claimType, System::String ^ valueType, Func<System::Text::Json::JsonElement, System::String ^> ^ resolver);
public CustomJsonClaimAction (string claimType, string valueType, Func<System.Text.Json.JsonElement,string> resolver);
public CustomJsonClaimAction (string claimType, string valueType, Func<System.Text.Json.JsonElement,string?> resolver);
new Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction : string * string * Func<System.Text.Json.JsonElement, string> -> Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction
Public Sub New (claimType As String, valueType As String, resolver As Func(Of JsonElement, String))
パラメーター
- claimType
- String
要求の作成時に Claim.Type に使用する値。
- valueType
- String
Claim の作成時に Claim.ValueType に使用する値。
- resolver
- Func<JsonElement,String>
指定された JSON ユーザー データから値を選択するために呼び出される Func。