次の方法で共有


CustomJsonClaimAction コンストラクター

定義

オーバーロード

CustomJsonClaimAction(String, String, Func<JObject,String>)

新しい CustomJsonClaimAction を作成します。

CustomJsonClaimAction(String, String, Func<JsonElement,String>)

新しい CustomJsonClaimAction を作成します。

CustomJsonClaimAction(String, String, Func<JObject,String>)

ソース:
CustomJsonClaimAction.cs
ソース:
CustomJsonClaimAction.cs

新しい 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 に使用する値。

resolver
Func<Newtonsoft.Json.Linq.JObject,String>

指定された json ユーザー データから値を選択するために呼び出される Func。

適用対象

CustomJsonClaimAction(String, String, Func<JsonElement,String>)

ソース:
CustomJsonClaimAction.cs

新しい 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。

適用対象